1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:17:36 +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

@ -18,6 +18,7 @@ int systrace(pid_t);
int gettid();
int donate(int tid);
int create_thread(int(*)(void*), void*);
void exit_thread(int);
int create_shared_buffer(pid_t peer_pid, int, void** buffer);
void* get_shared_buffer(int shared_buffer_id);
int release_shared_buffer(int shared_buffer_id);