summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2000-03-22 18:44:54 +0000
committerwtc%netscape.com <devnull@localhost>2000-03-22 18:44:54 +0000
commit2b0e13fba8fad9c845ded677ea53cfab6304be58 (patch)
treed265e7c6242e7e58dffe8ff5d3387ff0a783e31d
parent31f5bb16f39dfcea3d20cbaaae2e8253f53758bc (diff)
downloadnspr-hg-2b0e13fba8fad9c845ded677ea53cfab6304be58.tar.gz
Removed a temporary hack added before the delayed notify fix was checked
in.
-rw-r--r--pr/src/pthreads/ptsynch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/src/pthreads/ptsynch.c b/pr/src/pthreads/ptsynch.c
index 5cdd0fd3..6241bc88 100644
--- a/pr/src/pthreads/ptsynch.c
+++ b/pr/src/pthreads/ptsynch.c
@@ -104,7 +104,7 @@ static void pt_PostNotifies(PRLock *lock, PRBool unlock)
while (notified->cv[index].times-- > 0)
{
rv = pthread_cond_signal(&cv->cv);
- PR_ASSERT((0 == rv) || (EINVAL == rv));
+ PR_ASSERT(0 == rv);
}
}
#if defined(DEBUG)