diff options
author | Marvin Borner | 2021-04-17 22:59:57 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-17 22:59:57 +0200 |
commit | cdf029471736f43776452930b7195a06ab143654 (patch) | |
tree | f8ab7dee26c589ff3666194b814d9457482ec02c /libs/libc/sys.c | |
parent | 89b5b9acf6037fc1a87f9e85c64831187a47ba94 (diff) |
Added I/O bus implementation for efficient IPC
This was a nice coding session. See ya tomorrow!
Diffstat (limited to 'libs/libc/sys.c')
-rw-r--r-- | libs/libc/sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/sys.c b/libs/libc/sys.c index 3161d72..b0e6e93 100644 --- a/libs/libc/sys.c +++ b/libs/libc/sys.c @@ -128,7 +128,7 @@ res exec(const char *path, ...) return sys5(SYS_EXEC, (int)path, args[0], args[1], args[2], args[3]); } -res io_poll(u32 *devs) +res io_poll(enum io_type *devs) { return sys1(SYS_IOPOLL, (int)devs); } |