Home
last modified time | relevance | path

Searched refs:g_once_init_list (Results 1 – 4 of 4) sorted by relevance

/dports/games/gnubg/gnubg-1.06.002/
H A Dglib-ext.c82 static GSList *g_once_init_list = NULL; variable
92 if (!g_slist_find(g_once_init_list, (void *) value_location)) { in g_once_init_enter_impl()
94 g_once_init_list = g_slist_prepend(g_once_init_list, (void *) value_location); in g_once_init_enter_impl()
98 while (g_slist_find(g_once_init_list, (void *) value_location)); in g_once_init_enter_impl()
109 g_return_if_fail(g_once_init_list != NULL); in g_once_init_leave()
113 g_once_init_list = g_slist_remove(g_once_init_list, (void *) value_location); in g_once_init_leave()
/dports/devel/glib20/glib-2.70.4/glib/
H A Dgthread.c515 static GSList *g_once_init_list = NULL;
706 if (!g_slist_find (g_once_init_list, (void*) value_location)) in gboolean()
709 g_once_init_list = g_slist_prepend (g_once_init_list, (void*) value_location); in gboolean()
714 while (g_slist_find (g_once_init_list, (void*) value_location)); in gboolean()
748 g_return_if_fail (g_once_init_list != NULL);
749 g_once_init_list = g_slist_remove (g_once_init_list, (void*) value_location);
/dports/graphics/cogl/cogl-1.22.8/deps/glib/
H A Dgthread.c883 static GSList* g_once_init_list = NULL; variable
1114 if (!g_slist_find (g_once_init_list, (void*) value_location)) in g_once_init_enter_impl()
1117 g_once_init_list = g_slist_prepend (g_once_init_list, (void*) value_location); in g_once_init_enter_impl()
1122 while (g_slist_find (g_once_init_list, (void*) value_location)); in g_once_init_enter_impl()
1148 g_return_if_fail (g_once_init_list != NULL); in g_once_init_leave()
1152 g_once_init_list = g_slist_remove (g_once_init_list, (void*) value_location); in g_once_init_leave()
/dports/devel/glib20/glib-2.70.4/
H A DNEWS2851 - !477 gthread: Remove unsynchronized access to g_once_init_list from assertion