From cdf029471736f43776452930b7195a06ab143654 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 17 Apr 2021 22:59:57 +0200 Subject: Added I/O bus implementation for efficient IPC This was a nice coding session. See ya tomorrow! --- libs/libc/sys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/libc/sys.c') 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); } -- cgit v1.2.3