comment out assert

This commit is contained in:
David Rose 2009-07-21 01:53:09 +00:00
parent 3657156990
commit f60864c31c

View File

@ -143,7 +143,9 @@ wait(double timeout) {
if (result != 0 && result != ETIMEDOUT) {
errno = result;
perror("pthread_cond_timedwait");
assert(false);
// TODO: investigate why we sometimes get an "Invalid Value" or
// some such here.
// assert(false);
}
#endif // _WIN32