Commit d64b6118 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use a MEANINGFUL (hopefully) debug message

parent 8e938c63
...@@ -503,9 +503,8 @@ static inline int __vlc_cond_wait( const char * psz_file, int i_line, ...@@ -503,9 +503,8 @@ static inline int __vlc_cond_wait( const char * psz_file, int i_line,
if( i_result == ETIMEDOUT ) if( i_result == ETIMEDOUT )
{ {
/* People keep pissing me off with this. --Meuuh */
msg_Dbg( p_condvar->p_this, msg_Dbg( p_condvar->p_this,
"thread %li: secret message triggered " "thread %li: probable condition deadlock "
"at %s:%d (%s)", CAST_PTHREAD_TO_INT(pthread_self()), "at %s:%d (%s)", CAST_PTHREAD_TO_INT(pthread_self()),
psz_file, i_line, strerror(i_result) ); psz_file, i_line, strerror(i_result) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment