| 44 | } |
| 45 | |
| 46 | int FsNode::CreateDirectory(DirectoryEntry*, uint32_t){ |
| 47 | return -ENOSYS; |
| 48 | } |
| 49 | |
| 50 | ssize_t FsNode::ReadLink(char* pathBuffer, size_t bufSize){ |
| 51 | if((flags & S_IFMT) != S_IFLNK){ |
nothing calls this directly
no outgoing calls
no test coverage detected