| 951 | } |
| 952 | |
| 953 | U32 KProcess::access(BString path, U32 mode) { |
| 954 | std::shared_ptr<FsNode> node = Fs::getNodeFromLocalPath(this->currentDirectory, path, true); |
| 955 | return internalAccess(node, mode); |
| 956 | } |
| 957 | |
| 958 | U32 KProcess::lseek(FD fildes, S32 offset, U32 whence) { |
| 959 | KFileDescriptorPtr fd = this->getFileDescriptor(fildes); |
no test coverage detected