Forgot to remove test code

This commit is contained in:
Alex 2022-12-24 01:51:12 +02:00
parent fe96c7b083
commit 48ef694d08
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -145,13 +145,13 @@ static int sys_get_current_thread(SyscallsFrame *Frame)
static int sys_get_process_by_pid(SyscallsFrame *Frame) static int sys_get_process_by_pid(SyscallsFrame *Frame)
{ {
fixme("sys_get_process_by_pid: %#lx, %#lx, %d", Frame, Buffer, Count); fixme("sys_get_process_by_pid: %#lx", Frame);
return -1; return -1;
} }
static int sys_get_thread_by_tid(SyscallsFrame *Frame) static int sys_get_thread_by_tid(SyscallsFrame *Frame)
{ {
fixme("sys_get_thread_by_tid: %#lx, %#lx, %d", Frame, Buffer, Count); fixme("sys_get_thread_by_tid: %#lx", Frame);
return -1; return -1;
} }