summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Normand <philn@igalia.com>2012-11-14 12:20:54 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-11-14 12:25:30 +0100
commitde58036de5dd6e868b4e61f909310ca5c9ae7ee3 (patch)
tree1a15ee29c5c1db676240e5faf9431857ea4c0f1d
parentfa368f2aa358c704725fcf8e16895e30d4357f43 (diff)
downloadgstreamer-de58036de5dd6e868b4e61f909310ca5c9ae7ee3.tar.gz
task: documentation update
GStaticRecMutex usage has been replaced by GRecMutex, reflect this change in the documentation.
-rw-r--r--gst/gsttask.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gsttask.c b/gst/gsttask.c
index 9ac4f16005..993eb7094e 100644
--- a/gst/gsttask.c
+++ b/gst/gsttask.c
@@ -38,7 +38,7 @@
* might sometimes be needed to create a #GstTask manually if it is not related to
* a #GstPad.
*
- * Before the #GstTask can be run, it needs a #GStaticRecMutex that can be set with
+ * Before the #GstTask can be run, it needs a #GRecMutex that can be set with
* gst_task_set_lock().
*
* The task can be started, paused and stopped with gst_task_start(), gst_task_pause()
@@ -386,7 +386,7 @@ gst_task_cleanup_all (void)
* This function will not yet create and start a thread. Use gst_task_start() or
* gst_task_pause() to create and start the GThread.
*
- * Before the task can be used, a #GStaticRecMutex must be configured using the
+ * Before the task can be used, a #GRecMutex must be configured using the
* gst_task_set_lock() function. This lock will always be acquired while
* @func is called.
*