| 638 | } |
| 639 | |
| 640 | long SysGetPID(regs64_t* r){ |
| 641 | uint64_t* pid = (uint64_t*)SC_ARG0(r); |
| 642 | |
| 643 | *pid = Scheduler::GetCurrentProcess()->pid; |
| 644 | |
| 645 | return 0; |
| 646 | } |
| 647 | |
| 648 | long SysMount(regs64_t* r){ |
| 649 | return 0; |
nothing calls this directly
no test coverage detected