mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
added debug to signal noting the result of the flag after being set
Original commit message from CVS: added debug to signal noting the result of the flag after being set
This commit is contained in:
parent
10de3d17c1
commit
9f51259c73
1 changed files with 2 additions and 1 deletions
|
@ -390,7 +390,8 @@ gst_thread_signal_thread (GstThread *thread, guint syncflag, gboolean set)
|
|||
GST_FLAG_UNSET(thread,syncflag);
|
||||
g_cond_signal (thread->cond);
|
||||
g_mutex_unlock (thread->lock[syncflag-GST_THREAD_STATE_STARTED]);
|
||||
GST_DEBUG (0,"sync: done signaling thread with %u set to %d\n",syncflag,set);
|
||||
GST_DEBUG (0,"sync: done signaling thread with %u set to %d..should be %d\n",syncflag,
|
||||
GST_FLAG_ISSET(thread,syncflag),set);
|
||||
}
|
||||
|
||||
// the set flag is to see what flag to wait for
|
||||
|
|
Loading…
Reference in a new issue