aboutsummaryrefslogtreecommitdiff
path: root/libjava/posix-threads.cc
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>1999-08-24 04:01:06 +0000
committerTom Tromey <tromey@gcc.gnu.org>1999-08-24 04:01:06 +0000
commit657ac7664ccb23e3d8c45ca4932a6226fef076de (patch)
treed25d3c6e4e71e72f48f581516593e6a0e2a8e531 /libjava/posix-threads.cc
parent7b5efe21a0624c7340186c58df5ab3b722eafa91 (diff)
downloadgcc-657ac7664ccb23e3d8c45ca4932a6226fef076de.zip
gcc-657ac7664ccb23e3d8c45ca4932a6226fef076de.tar.gz
gcc-657ac7664ccb23e3d8c45ca4932a6226fef076de.tar.bz2
boehm.cc: Undefine TRUE and FALSE.
* boehm.cc: Undefine TRUE and FALSE. * posix-threads.cc (_Jv_CondWait): Use ETIMEDOUT, not ETIME. From-SVN: r28810
Diffstat (limited to 'libjava/posix-threads.cc')
-rw-r--r--libjava/posix-threads.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/posix-threads.cc b/libjava/posix-threads.cc
index 791c43b..7e721c5 100644
--- a/libjava/posix-threads.cc
+++ b/libjava/posix-threads.cc
@@ -92,7 +92,7 @@ _Jv_CondWait (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *mu,
r = pthread_cond_timedwait (cv, pmu, &ts);
/* A timeout is a normal result. */
- if (r && errno == ETIME)
+ if (r && errno == ETIMEDOUT)
r = 0;
}
return r;