mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
12 lines
215 B
C
12 lines
215 B
C
#include <pthread.h>
|
|
#include "sys/calls.h"
|
|
|
|
dword_t sys_exit(dword_t status) {
|
|
// TODO free current task structures
|
|
pthread_exit(NULL);
|
|
}
|
|
|
|
dword_t sys_exit_group(dword_t status) {
|
|
pthread_exit(NULL);
|
|
}
|