| 1268 | } |
| 1269 | |
| 1270 | U32 KProcess::symlinkat(BString target, FD dirfd, BString linkpath) { |
| 1271 | BString currentDirectory; |
| 1272 | U32 result = this->getCurrentDirectoryFromDirFD(dirfd, currentDirectory); |
| 1273 | if (result) |
| 1274 | return result; |
| 1275 | return symlinkInDirectory(currentDirectory, target, linkpath); |
| 1276 | } |
| 1277 | |
| 1278 | U32 KProcess::symlink(BString target, BString linkpath) { |
| 1279 | return symlinkInDirectory(this->currentDirectory, target, linkpath); |
no test coverage detected