diff options
author | dzwdz | 2023-06-11 19:17:39 +0200 |
---|---|---|
committer | dzwdz | 2023-06-11 19:17:39 +0200 |
commit | 84fa0102c6906252999967925f32098ab6d5a259 (patch) | |
tree | 00bd8c98a68e4882e2f42510c9c55932ef855ba3 /src/user/lib/signal.c | |
parent | ff154205e1671e11ed8566740c1cefaad79c2512 (diff) |
kernel: replace await with wait2, roughly compatible with POSIX
dash works now :^)))
Diffstat (limited to 'src/user/lib/signal.c')
-rw-r--r-- | src/user/lib/signal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/user/lib/signal.c b/src/user/lib/signal.c index d8b673d..41340e7 100644 --- a/src/user/lib/signal.c +++ b/src/user/lib/signal.c @@ -76,8 +76,7 @@ int sigfillset(sigset_t *set) { } int sigprocmask(int how, const sigset_t *set, const sigset_t *oldset) { - (void)how; (void)set; (void)oldset; - __libc_panic("unimplemented"); + return 0; } int sigsuspend(const sigset_t *mask) { |