diff options
author | dzwdz | 2023-09-25 00:16:12 +0200 |
---|---|---|
committer | dzwdz | 2023-09-25 00:16:12 +0200 |
commit | 681470cf98a6e512627e67620b39c090b9e98aba (patch) | |
tree | f2d9215d57cd1787df7e37baa9cfba00a7ed912b /src/libc/compat.c | |
parent | 2c78dc983d09e136dd016ae6ecee6b191e033de1 (diff) |
kernel: remove _sys_filicide (made redundant by _sys_intr)
Diffstat (limited to 'src/libc/compat.c')
-rw-r--r-- | src/libc/compat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libc/compat.c b/src/libc/compat.c index c7aab63..459a0aa 100644 --- a/src/libc/compat.c +++ b/src/libc/compat.c @@ -17,7 +17,6 @@ long c0_fs_respond(void *buf, long ret, int flags) { return ret; } -/* old syscall */ long _sys_await(void) { struct sys_wait2 res; if (_sys_wait2(-1, 0, &res) < 0) { @@ -25,3 +24,7 @@ long _sys_await(void) { } return res.status; } + +void _sys_filicide(void) { + _sys_intr("kill", 4); +} |