From 3d74552684a6eb49bc67845bfb3839896395e66a Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Thu, 20 Oct 2011 15:42:55 +0800 Subject: [PATCH] clutter-main.c: Fix multiple declarations clutter_threads_impl_lock/clutter_threads_impl_unlock was accidently defined 2 times during the revert-fix that. --- clutter/clutter-main.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/clutter/clutter-main.c b/clutter/clutter-main.c index 1e1efb340..ee8062c2a 100644 --- a/clutter/clutter-main.c +++ b/clutter/clutter-main.c @@ -916,18 +916,6 @@ clutter_main (void) CLUTTER_TIMER_STOP (uprof_get_mainloop_context (), mainloop_timer); } -static void -clutter_threads_impl_lock (void) -{ - g_mutex_lock (&clutter_threads_mutex); -} - -static void -clutter_threads_impl_unlock (void) -{ - g_mutex_unlock (&clutter_threads_mutex); -} - /** * clutter_threads_init: *