| 12 | } |
| 13 | |
| 14 | ssize_t FsNode::Write(size_t, size_t, uint8_t *){ |
| 15 | return -ENOSYS; |
| 16 | } |
| 17 | |
| 18 | fs_fd_t* FsNode::Open(size_t flags){ |
| 19 | fs_fd_t* fDesc = (fs_fd_t*)kmalloc(sizeof(fs_fd_t)); |
nothing calls this directly
no outgoing calls
no test coverage detected