1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:57:44 +00:00

Kernel+LibC: Add exit_thread() syscall.

This commit is contained in:
Andreas Kling 2019-04-29 15:17:20 +02:00
parent 02b69cf06a
commit d07be1087a
6 changed files with 26 additions and 0 deletions

View file

@ -175,6 +175,7 @@ public:
int sys$setsockopt(const Syscall::SC_setsockopt_params*);
int sys$restore_signal_mask(dword mask);
int sys$create_thread(int(*)(void*), void*);
void sys$exit_thread(int code);
int sys$rename(const char* oldpath, const char* newpath);
int sys$systrace(pid_t);