From f1d62ae3f37bfac989ba54c515a529764c13017b Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 13 Feb 2006 13:57:29 +0000 Subject: [PATCH] Add new functions to docs. Original commit message from CVS: * docs/gst/gstreamer-sections.txt: * gst/gstbus.c: Add new functions to docs. --- docs/gst/gstreamer-sections.txt | 3 +++ gst/gstbus.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/gst/gstreamer-sections.txt b/docs/gst/gstreamer-sections.txt index 393d8210d1..a2128e52a8 100644 --- a/docs/gst/gstreamer-sections.txt +++ b/docs/gst/gstreamer-sections.txt @@ -95,6 +95,8 @@ gst_bus_sync_signal_handler gst_bus_create_watch gst_bus_add_watch_full gst_bus_add_watch +gst_bus_disable_sync_message_emission +gst_bus_enable_sync_message_emission gst_bus_async_signal_func gst_bus_add_signal_watch gst_bus_add_signal_watch_full @@ -115,6 +117,7 @@ GST_BUS_CAST gst_bus_get_type gst_bus_flags_get_type gst_bus_sync_reply_get_type +GstBusPrivate diff --git a/gst/gstbus.c b/gst/gstbus.c index b221169f67..35c535a50f 100644 --- a/gst/gstbus.c +++ b/gst/gstbus.c @@ -935,9 +935,9 @@ gst_bus_sync_signal_handler (GstBus * bus, GstMessage * message, gpointer data) * as this function is called. * * While this function looks similar to gst_bus_add_signal_watch(), it is not - * exactly the same -- this function enables synchronous emission of + * exactly the same -- this function enables synchronous emission of * signals when messages arrive; gst_bus_add_signal_watch adds an idle callback - * to pop messages off the bus asynchronously. The sync-message signal + * to pop messages off the bus asynchronously. The sync-message signal * comes from the thread of whatever object posted the message; the message * signal is marshalled to the main thread via the main loop. *