From d8145a8cc90e6cb2b45cb2bd6326c502bedaf27e Mon Sep 17 00:00:00 2001 From: The Arrayser <68914060+TheArrayser@users.noreply.github.com> Date: Tue, 30 Aug 2022 12:31:37 +0200 Subject: [PATCH] threads --- System Abstraction/cdb_sustem.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/System Abstraction/cdb_sustem.h b/System Abstraction/cdb_sustem.h index fb76e50..ae15176 100644 --- a/System Abstraction/cdb_sustem.h +++ b/System Abstraction/cdb_sustem.h @@ -39,3 +39,7 @@ void * sus_heapResize(void * memroy, size_t newBytes); // returns NULL, if there void sus_heapFree(void * memroy); // what should this function do, if an error occurse.. // Networking API -- coming soon, cuz idk + +//Threads +sus_Bool sus_threadNew(int (*proc)(int arg), int arg); +void sus_threadSleep(unsigned long seconds); \ No newline at end of file