diff options
author | Marvin Borner | 2021-04-02 01:27:36 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-02 01:27:36 +0200 |
commit | 192b756a6999a0637fcc72f3fd2f9f7099e32543 (patch) | |
tree | f936c42baeb54c8aebd0fc0ac0cb56f9dcf3c96c /libs/libc/inc/sys.h | |
parent | afa00abb2b68205bee539d7947130d6b1b1ec6e9 (diff) |
Huge scheduling/proc-management improvements
Diffstat (limited to 'libs/libc/inc/sys.h')
-rw-r--r-- | libs/libc/inc/sys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h index b555998..6565e10 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -72,7 +72,7 @@ res write(const char *path, const void *buf, u32 offset, u32 count) NONNULL; res ioctl(const char *path, ...) NONNULL; res stat(const char *path, struct stat *buf) NONNULL; res poll(const char **files) NONNULL; -res exec(const char *path, ...) ATTR((nonnull(1))); +res exec(const char *path, ...) ATTR((nonnull(1))) SENTINEL; res yield(void); res boot(u32 cmd); u32 time(void); |