diff options
author | dzwdz | 2022-08-18 14:11:31 +0200 |
---|---|---|
committer | dzwdz | 2022-08-18 14:11:31 +0200 |
commit | 0ed2f796d7723af8321f35d4ef5e6781ea41e36d (patch) | |
tree | c4b64981d0d2bfddd597eb05e84cd1a781d253e1 /src/user/lib/thread.c | |
parent | 7a3f292c8316239182f30fa8f3a5e5a14cca587c (diff) |
syscall/fork: FORK_SHAREMEM for primitive "threads"
Diffstat (limited to 'src/user/lib/thread.c')
-rw-r--r-- | src/user/lib/thread.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/user/lib/thread.c b/src/user/lib/thread.c new file mode 100644 index 0000000..25d98a9 --- /dev/null +++ b/src/user/lib/thread.c @@ -0,0 +1,11 @@ +#include <camellia/flags.h> +#include <camellia/syscalls.h> +#include <stdlib.h> +#include <user/lib/thread.h> + +void thread_create(int flags, void (*fn)(void*), void *arg) { + if (!_syscall_fork(flags | FORK_SHAREMEM, NULL)) { + void *stack = malloc(4096); + chstack(arg, fn, stack + 4096); + } +} |