diff options
author | Marvin Borner | 2020-11-24 12:15:01 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-24 12:15:01 +0100 |
commit | 39f3538f7ee56dab414d62201235f8427b4a9592 (patch) | |
tree | f58a946b8db1e753bfa9d1123d39ba52f06b0770 /libc/inc/sys.h | |
parent | 8babf8b26e23ffdd8094c810295061effde153dd (diff) |
Added userspace-based network timeout
The network in my whole city is down right now, so I've done some
error catching using timeouts etc without the kernel blocking
everything. Not having internet is exhausting though :(
Diffstat (limited to 'libc/inc/sys.h')
-rw-r--r-- | libc/inc/sys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h index a9f7820..64ce7f5 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -80,7 +80,7 @@ int sysv(enum sys num, ...); } \ } #define yield() (int)sys0(SYS_YIELD) -#define time() (int)sys0(SYS_TIME) +#define time() (u32) sys0(SYS_TIME) #define event_register(id) sys1(SYS_REGISTER, (int)(id)) #define event_unregister(id) sys1(SYS_UNREGISTER, (int)(id)) |