Revert "clutter-main.c: Fix multiple declarations"

This reverts commit 3d74552684.

This is a part to attempt to further investigate about the 0xC0000264 error
on Windows
This commit is contained in:
Chun-wei Fan 2011-10-21 17:43:21 +08:00
parent 098a83af9e
commit e0ad11a193

View File

@ -916,6 +916,18 @@ clutter_main (void)
CLUTTER_TIMER_STOP (uprof_get_mainloop_context (), mainloop_timer); 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: * clutter_threads_init:
* *