Add a warning to g_thread_init_with_errorcheck_mutexes

Should anybody try to use this, we should at least tell them that
its gone.
This commit is contained in:
Matthias Clasen 2011-10-05 22:23:25 -04:00
parent 8e82225aed
commit 749758ec78

View File

@ -44,4 +44,5 @@ void
g_thread_init_with_errorcheck_mutexes (gpointer vtable) g_thread_init_with_errorcheck_mutexes (gpointer vtable)
{ {
g_assert (vtable == NULL); g_assert (vtable == NULL);
g_warning ("GThread system no longer supports errorcheck mutexes.");
} }