aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2020-08-17 13:52:51 +0200
committerMarvin Borner2020-08-17 13:52:51 +0200
commitca7d400b7705ba887df69391cb774d4de83e8bf3 (patch)
treea59b97c9405413d1cb01e05c3f0c760554cecc5c /libc
parent0ba9ee15d0a229c619f35a5db04e45fe8861c3c9 (diff)
Added event unmap
Diffstat (limited to 'libc')
-rw-r--r--libc/inc/sys.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h
index 99f5920..88d83df 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -4,7 +4,17 @@
#ifndef SYS_H
#define SYS_H
-enum sys { SYS_LOOP, SYS_MALLOC, SYS_FREE, SYS_READ, SYS_WRITE, SYS_EXEC, SYS_EXIT, SYS_MAP };
+enum sys {
+ SYS_LOOP,
+ SYS_MALLOC,
+ SYS_FREE,
+ SYS_READ,
+ SYS_WRITE,
+ SYS_EXEC,
+ SYS_EXIT,
+ SYS_MAP,
+ SYS_UNMAP
+};
enum event { EVENT_KEYBOARD, EVENT_MOUSE };
#if defined(userspace)
@@ -32,6 +42,7 @@ int sysv(enum sys num, ...);
} \
}
#define map(id, func) sys2(SYS_MAP, (int)id, (int)func)
+#define unmap(id, func) sys2(SYS_UNMAP, (int)id, (int)func)
#endif
#endif