aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2020-09-07 00:17:04 +0200
committerMarvin Borner2020-09-07 00:17:04 +0200
commit9c2f40441e0cc909ebefe432ddc10e2de29b82ac (patch)
tree2dcdd4ae56faab40f4bbbee27e72023e3b8acdbb /libc
parent97f57cf4da45d268bbea863ae7bf40bb8c749aad (diff)
Added wait syscall.
This makes a process sleep until it receives a new message (no polling!). I thought that this will result in performance improvements but I haven't noticed any, yet. Maybe I'll remove this again in the future..
Diffstat (limited to 'libc')
-rw-r--r--libc/inc/sys.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h
index 073ccd2..1b01127 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -16,6 +16,7 @@ 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
@@ -71,6 +72,7 @@ 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))