From 0ed2f796d7723af8321f35d4ef5e6781ea41e36d Mon Sep 17 00:00:00 2001 From: dzwdz Date: Thu, 18 Aug 2022 14:11:31 +0200 Subject: syscall/fork: FORK_SHAREMEM for primitive "threads" --- src/user/lib/thread.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/user/lib/thread.h (limited to 'src/user/lib/thread.h') diff --git a/src/user/lib/thread.h b/src/user/lib/thread.h new file mode 100644 index 0000000..0d7376a --- /dev/null +++ b/src/user/lib/thread.h @@ -0,0 +1,4 @@ +#pragma once + +void thread_create(int flags, void (*fn)(void*), void *arg); +_Noreturn void chstack(void *arg, void (*fn)(void*), void *esp); -- cgit v1.2.3