summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcls%seawood.org <devnull@localhost>1999-09-21 19:43:35 +0000
committercls%seawood.org <devnull@localhost>1999-09-21 19:43:35 +0000
commitaf32701ea6dc8edab088e171e7b00245cd84bfc2 (patch)
tree634feca98106feb908b25e9cb858697657af911a
parent57d5644cc3ae1591127559b6130e115ff6297a49 (diff)
downloadnspr-hg-unlabeled-3.19.12.tar.gz
Sync'd with the HEAD branch again.unlabeled-3.19.12
-rw-r--r--pr/src/pthreads/ptthread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pr/src/pthreads/ptthread.c b/pr/src/pthreads/ptthread.c
index e8f82d12..943ea926 100644
--- a/pr/src/pthreads/ptthread.c
+++ b/pr/src/pthreads/ptthread.c
@@ -201,7 +201,6 @@ static void *_pt_root(void *arg)
static PRThread* pt_AttachThread(void)
{
PRThread *thred = NULL;
- void *privateData = NULL;
/*
* NSPR must have been initialized when PR_AttachThread is called.
@@ -955,7 +954,9 @@ static sigset_t javagc_intsoff_sigmask;
static sigset_t sigwait_set;
static struct timespec onemillisec = {0, 1000000L};
+#ifndef PT_NO_SIGTIMEDWAIT
static struct timespec hundredmillisec = {0, 100000000L};
+#endif
static void suspend_signal_handler(PRIntn sig);