aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2020-08-22 23:31:47 +0200
committerMarvin Borner2020-08-22 23:31:47 +0200
commitb667ea0fbd26af222f828199e7b9a7e62ad98081 (patch)
tree90dac52e2cf0a898da0097e9b1375506309b673f /libc
parent32f63ffc96f7f7ec6c504b8f50292316f026dd21 (diff)
Some window fb and yield implementation
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 dc6aaf1..8bff39b 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -12,6 +12,7 @@ enum sys {
SYS_WRITE, // Write to file
SYS_EXEC, // Execute path
SYS_EXIT, // Exit current process
+ SYS_YIELD, // Switch to next process
SYS_TIME, // Get kernel time
SYS_MAP, // Map event to function
SYS_UNMAP, // Unmap event
@@ -52,6 +53,7 @@ int sysv(enum sys num, ...);
while (1) { \
} \
}
+#define yield() (int)sys0(SYS_YIELD)
#define time() (int)sys0(SYS_TIME)
#define event_map(id, func) sys2(SYS_MAP, (int)(id), (int)(func))