summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsfraser%netscape.com <devnull@localhost>2002-07-24 04:06:07 +0000
committersfraser%netscape.com <devnull@localhost>2002-07-24 04:06:07 +0000
commita7af4ea273acf70fe0a6beff376b4fe8873b9226 (patch)
tree432d43d57894f38778657f4f6fac0770c58e7bd5
parentee7504382d9547a265b8211a84da0cadbba903cb (diff)
downloadnspr-hg-a7af4ea273acf70fe0a6beff376b4fe8873b9226.tar.gz
Fixing the MachO (DARWIN) build, which broke when wtc checked in a patch in bug 153525. r=bryner.
-rw-r--r--pr/src/pthreads/ptthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/src/pthreads/ptthread.c b/pr/src/pthreads/ptthread.c
index ba61f7c1..070a887c 100644
--- a/pr/src/pthreads/ptthread.c
+++ b/pr/src/pthreads/ptthread.c
@@ -1220,7 +1220,7 @@ static void suspend_signal_handler(PRIntn sig)
while (me->suspend & PT_THREAD_SUSPENDED)
{
#if !defined(FREEBSD) && !defined(NETBSD) && !defined(OPENBSD) \
- && !defined(BSDI) && !defined(VMS) && !defined(UNIXWARE) /*XXX*/
+ && !defined(BSDI) && !defined(VMS) && !defined(UNIXWARE) && !defined(DARWIN) /*XXX*/
PRIntn rv;
sigwait(&sigwait_set, &rv);
#endif