ret = pthread_cond_wait(&mq->cond_writable, &mq->lock);
} else {
//printf("STimed: %p\n", abs_timeout);
- assert(abs_timeout != NULL);
+ //assert(abs_timeout != NULL);
ret = pthread_cond_timedwait(&mq->cond_writable, &mq->lock, abs_timeout);
}
if(ret) {
ret = pthread_cond_wait(&mq->cond_readable, &mq->lock);
} else {
//printf("RTimed: %p\n", abs_timeout);
- assert(abs_timeout != NULL);
+ //assert(abs_timeout != NULL);
ret = pthread_cond_timedwait(&mq->cond_readable, &mq->lock, abs_timeout);
}
if(ret) {