summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_wait4.c
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>2002-05-02 19:58:43 +0000
committerArchie Cobbs <archie@FreeBSD.org>2002-05-02 19:58:43 +0000
commit663fc9cc7c50eee029c4ffb65589e7ae787917e3 (patch)
tree1119b760226c7870af16a85be9b494a6c3fa3a24 /lib/libpthread/thread/thr_wait4.c
parentca0989d865a1207e0deae0ef3739b462e21018de (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_wait4.c')
-rw-r--r--lib/libpthread/thread/thr_wait4.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_wait4.c b/lib/libpthread/thread/thr_wait4.c
index 6c4e068acb36..05ed065dd925 100644
--- a/lib/libpthread/thread/thr_wait4.c
+++ b/lib/libpthread/thread/thr_wait4.c
@@ -38,7 +38,7 @@
#include <pthread.h>
#include "pthread_private.h"
-__weak_reference(_wait4, wait4);
+__weak_reference(__wait4, wait4);
pid_t
_wait4(pid_t pid, int *istat, int options, struct rusage * rusage)
@@ -68,3 +68,15 @@ _wait4(pid_t pid, int *istat, int options, struct rusage * rusage)
return (ret);
}
+
+pid_t
+__wait4(pid_t pid, int *istat, int options, struct rusage *rusage)
+{
+ pid_t ret;
+
+ _thread_enter_cancellation_point();
+ ret = _wait4(pid, istat, options, rusage);
+ _thread_leave_cancellation_point();
+
+ return ret;
+}