aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2020-09-11 22:54:38 +0200
committerMarvin Borner2020-09-11 22:54:38 +0200
commite37e7eefcb0148651331d6a750846f26ecf11126 (patch)
tree2aad5993414d344900a7ade53ccddbc8586ccb54 /libc
parent8eb9ee85529a6140a533ffeb52f5e7f4078d9f27 (diff)
Removed wait syscall - whoopsidoo!
Diffstat (limited to 'libc')
-rw-r--r--libc/inc/sys.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h
index 1b01127..073ccd2 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -16,7 +16,6 @@ enum sys {
SYS_EXEC, // Execute path
SYS_EXIT, // Exit current process
SYS_YIELD, // Switch to next process
- SYS_WAIT, // Sleep until new message arrives
SYS_TIME, // Get kernel time
SYS_REGISTER, // Register for event
SYS_UNREGISTER, // Unregister event
@@ -72,7 +71,6 @@ int sysv(enum sys num, ...);
} \
}
#define yield() (int)sys0(SYS_YIELD)
-#define wait() (int)sys0(SYS_WAIT)
#define time() (int)sys0(SYS_TIME)
#define event_register(id) sys1(SYS_REGISTER, (int)(id))