| 48 | } |
| 49 | |
| 50 | ssize_t FsNode::ReadLink(char* pathBuffer, size_t bufSize){ |
| 51 | if((flags & S_IFMT) != S_IFLNK){ |
| 52 | return -EINVAL; // Not a symlink |
| 53 | } |
| 54 | |
| 55 | return -ENOSYS; |
| 56 | } |
| 57 | |
| 58 | int FsNode::Link(FsNode*, DirectoryEntry*){ |
| 59 | return -ENOSYS; |
nothing calls this directly
no outgoing calls
no test coverage detected