From: Sebastian Dröge Date: Mon, 29 Feb 2016 15:06:36 +0000 (+0200) Subject: element: Remove GST_STATE_LOCK_FULL() / UNLOCK_FULL() X-Git-Tag: 1.10.4~374 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01b2476d36dff429ded4517048a5671c38755669;p=platform%2Fupstream%2Fgstreamer.git element: Remove GST_STATE_LOCK_FULL() / UNLOCK_FULL() There is no corresponding API for that in GLib and nobody could've ever used these macros without compiler errors anyway. --- diff --git a/gst/gstelement.h b/gst/gstelement.h index 942248d..c3d1cbd 100644 --- a/gst/gstelement.h +++ b/gst/gstelement.h @@ -495,8 +495,6 @@ G_STMT_START { \ #define GST_STATE_LOCK(elem) g_rec_mutex_lock(GST_STATE_GET_LOCK(elem)) #define GST_STATE_TRYLOCK(elem) g_rec_mutex_trylock(GST_STATE_GET_LOCK(elem)) #define GST_STATE_UNLOCK(elem) g_rec_mutex_unlock(GST_STATE_GET_LOCK(elem)) -#define GST_STATE_UNLOCK_FULL(elem) g_rec_mutex_unlock_full(GST_STATE_GET_LOCK(elem)) -#define GST_STATE_LOCK_FULL(elem,t) g_rec_mutex_lock_full(GST_STATE_GET_LOCK(elem), t) #define GST_STATE_WAIT(elem) g_cond_wait (GST_STATE_GET_COND (elem), \ GST_OBJECT_GET_LOCK (elem)) #define GST_STATE_WAIT_UNTIL(elem, end_time) g_cond_wait_until (GST_STATE_GET_COND (elem), \