K 10 svn:author V 3 mtm K 8 svn:date V 27 2003-05-15T18:17:13.000000Z K 7 svn:log V 560 Do some cleanup with respect to condition variables. The implementation of pthread_cond_timedwait() is moved into cond_wait_common(). Pthread_cond_wait() and pthread_cond_timedwait() are now wrappers around this function. Previously, the former called the latter with the abstime pointing to 0 time. This violated Posix semantics should an application have reason to call it with that argument because instead or returning immediately it would have waited indefinitely for the cv to be signaled. Approved by: markm/mentor, re/blanket libthr Reviewed by: jeff END