MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / symlinkat

Method symlinkat

source/kernel/kprocess.cpp:1270–1276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1268}
1269
1270U32 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
1278U32 KProcess::symlink(BString target, BString linkpath) {
1279 return symlinkInDirectory(this->currentDirectory, target, linkpath);

Callers 1

syscall_symlinkatFunction · 0.80

Calls 2

symlinkInDirectoryFunction · 0.85

Tested by

no test coverage detected