I am currently developing a pthread-related socket communication program with gcc / g++. I'm having a problem using syslog.
If I do not use the syslog()
function, pthread_cond_wait
works correctly when I send pthread_cond_signal
.
However, when using the syslog()
function, if I send pthread_cond_signal
, then pthread_cond_wait
has no response.
Is this a problem with syslog?