diff options
author | dzwdz | 2022-09-02 14:44:52 +0200 |
---|---|---|
committer | dzwdz | 2022-09-02 17:58:47 +0200 |
commit | c16d956c0dd3d69748f7208e09bb69a6df8c6483 (patch) | |
tree | 38089f4b9e7fb153aa817e25340b7107f7cdf795 /src/shared | |
parent | 41a15bd16806261d66d55bbb85034553cd58361e (diff) |
kernel/proc: introduce child ids for telling children apart
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/include/camellia/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/include/camellia/syscalls.h b/src/shared/include/camellia/syscalls.h index 634583b..2450fff 100644 --- a/src/shared/include/camellia/syscalls.h +++ b/src/shared/include/camellia/syscalls.h @@ -47,7 +47,7 @@ long _syscall_await(void); * @param flags FORK_NOREAP, FORK_NEWFS * @param fs_front requires FORK_NEWFS. the front handle to the new fs is put there * - * @return 0 in the child, a meaningless positive value in the parent. + * @return 0 in the child, the CID in the parent. */ long _syscall_fork(int flags, handle_t __user *fs_front); |