On Sun, 24 Mar 2002, Chris Morgan wrote:
~/c/Program Files/winamp$ wine Winamp.exe FIXME:pthread_cond_init FIXME:pthread_cond_signal FIXME:pthread_cond_wait
Maybe these need to actually be implemented then. Conditions does not map directly to a Win32 synchronization primitive, but it might be possible to implement them in terms of counters and semaphores. Condition waits do some interaction with mutexes as well, so perhaps it has hung waiting for the mutex that the condition wait is supposed to unlock.
Or, you could do some actual traces to find out if implementing these are really needed or there's some other problem...