diff options
author | Marvin Borner | 2020-08-17 13:52:51 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-17 13:52:51 +0200 |
commit | ca7d400b7705ba887df69391cb774d4de83e8bf3 (patch) | |
tree | a59b97c9405413d1cb01e05c3f0c760554cecc5c /libc | |
parent | 0ba9ee15d0a229c619f35a5db04e45fe8861c3c9 (diff) |
Added event unmap
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inc/sys.h | 13 |
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 |