mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
task: fix GST_TASK_BROADCAST
Surprisingly enough, you can't "breadcast" on a GCond. Spotted by Rune Sætre. https://bugzilla.gnome.org/show_bug.cgi?id=645022
This commit is contained in:
parent
c8ecd6e9eb
commit
02d27de048
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ typedef enum {
|
||||||
*
|
*
|
||||||
* Send a broadcast signal to all waiting task conds
|
* Send a broadcast signal to all waiting task conds
|
||||||
*/
|
*/
|
||||||
#define GST_TASK_BROADCAST(task) g_cond_breadcast(GST_TASK_GET_COND (task))
|
#define GST_TASK_BROADCAST(task) g_cond_broadcast(GST_TASK_GET_COND (task))
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GST_TASK_GET_LOCK:
|
* GST_TASK_GET_LOCK:
|
||||||
|
|
Loading…
Reference in a new issue