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

Method readlinkat

source/kernel/kprocess.cpp:1294–1300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1292}
1293
1294U32 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
1302U32 KProcess::readlink(BString path, U32 buffer, U32 bufSize) {
1303 return readlinkInDirectory(this->currentDirectory, path, buffer, bufSize);

Callers 1

syscall_readlinkatFunction · 0.80

Calls 1

Tested by

no test coverage detected