| 1292 | } |
| 1293 | |
| 1294 | U32 KProcess::readlinkat(FD dirfd, BString path, U32 buf, U32 bufsiz) { |
| 1295 | BString currentDirectory; |
| 1296 | U32 result = this->getCurrentDirectoryFromDirFD(dirfd, currentDirectory); |
| 1297 | if (result) |
| 1298 | return result; |
| 1299 | return readlinkInDirectory(currentDirectory, path, buf, bufsiz); |
| 1300 | } |
| 1301 | |
| 1302 | U32 KProcess::readlink(BString path, U32 buffer, U32 bufSize) { |
| 1303 | return readlinkInDirectory(this->currentDirectory, path, buffer, bufSize); |
no test coverage detected