MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / SysUName

Function SysUName

Kernel/src/arch/x86_64/syscalls.cpp:833–838  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

831}
832
833long SysUName(regs64_t* r){
834 char* str = (char*)SC_ARG0(r);
835 strcpy(str, Lemon::versionString);
836
837 return 0;
838}
839
840long SysReadDir(regs64_t* r){
841 int fd = SC_ARG0(r);

Callers

nothing calls this directly

Calls 1

strcpyFunction · 0.85

Tested by

no test coverage detected