summaryrefslogtreecommitdiff
path: root/libc/signal
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-11-10 23:35:37 +0000
committerEric Andersen <andersen@codepoet.org>2005-11-10 23:35:37 +0000
commit1664f73efa9499cca3c3287cf5b7888fde8b832e (patch)
treeea239801dfcfcffaa68a875c199626c199b8a878 /libc/signal
parente1d467b7f6d4dffd311c63f0bef4a70f3887feda (diff)
Lets not just paper over this. Add implementation of __xpg_sigpause()
Diffstat (limited to 'libc/signal')
-rw-r--r--libc/signal/sigpause.c6
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);
+}
+