diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-11-10 23:35:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-11-10 23:35:37 +0000 |
commit | 1664f73efa9499cca3c3287cf5b7888fde8b832e (patch) | |
tree | ea239801dfcfcffaa68a875c199626c199b8a878 /libc/signal | |
parent | e1d467b7f6d4dffd311c63f0bef4a70f3887feda (diff) |
Lets not just paper over this. Add implementation of __xpg_sigpause()
Diffstat (limited to 'libc/signal')
-rw-r--r-- | libc/signal/sigpause.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/signal/sigpause.c b/libc/signal/sigpause.c index 433b92b0c..20a6ecd45 100644 --- a/libc/signal/sigpause.c +++ b/libc/signal/sigpause.c @@ -63,3 +63,9 @@ int sigpause (int mask) { return __sigpause (mask, 0); } + +int __xpg_sigpause (int sig) +{ + return __sigpause (sig, 1); +} + |