clutter-main.c: Fix multiple declarations

clutter_threads_impl_lock/clutter_threads_impl_unlock was accidently
defined 2 times during the revert-fix that.
This commit is contained in:
Chun-wei Fan 2011-10-20 15:42:55 +08:00
parent d6af2e54c8
commit 3d74552684

View File

@ -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:
*