diff options
author | dzwdz | 2021-08-22 12:04:05 +0200 |
---|---|---|
committer | dzwdz | 2021-08-22 12:04:05 +0200 |
commit | 0128c5dc7ff2da36114b8f55187234d9b55db353 (patch) | |
tree | a504eb2a7c310bf54f6fc531e2b20a72142cc3bf /src/kernel/syscalls.h | |
parent | 175b575bbdca5d620c1ace1281568b2bb9c6b021 (diff) |
fix typo in _syscall_await definition
Diffstat (limited to 'src/kernel/syscalls.h')
-rw-r--r-- | src/kernel/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/syscalls.h b/src/kernel/syscalls.h index a986a33..83a68b2 100644 --- a/src/kernel/syscalls.h +++ b/src/kernel/syscalls.h @@ -19,7 +19,7 @@ _Noreturn void _syscall_exit(const char *msg, size_t len); /** Waits for a child to exit, putting its exit message into *buf. * @return the length of the message */ -int _syscall_await(char *buf, int *len); +int _syscall_await(char *buf, int len); /** Creates a copy of the current process, and executes it. * All user memory pages get copied too. |