mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-01 13:42:10 +01:00
Bug 560676 - function access for g_threads_supported
2008-12-18 Mike Kestner <mkestner@novell.com> Bug 560676 - function access for g_threads_supported * glib/gthreads.c (g_thread_get_initialized): new accessor for g_threads_supported macro. * glib/gthreads.h: add g_thread_get_initialized svn path=/trunk/; revision=7752
This commit is contained in:
parent
fc0ba86c69
commit
8bed68813e
@ -1,3 +1,11 @@
|
|||||||
|
2008-12-18 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
Bug 560676 - function access for g_threads_supported
|
||||||
|
|
||||||
|
* glib/gthreads.c (g_thread_get_initialized): new accessor for
|
||||||
|
g_threads_supported macro.
|
||||||
|
* glib/gthreads.h: add g_thread_get_initialized
|
||||||
|
|
||||||
2008-12-15 Matthias Clasen <mclasen@redhat.com>
|
2008-12-15 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* configure.in: Bump version
|
* configure.in: Bump version
|
||||||
|
@ -974,5 +974,18 @@ g_thread_foreach (GFunc thread_func,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* g_thread_get_initialized
|
||||||
|
*
|
||||||
|
* Indicates if g_thread_init() has been called.
|
||||||
|
*
|
||||||
|
* Since: 2.20
|
||||||
|
*/
|
||||||
|
gboolean
|
||||||
|
g_thread_get_initialized ()
|
||||||
|
{
|
||||||
|
return g_thread_supported ();
|
||||||
|
}
|
||||||
|
|
||||||
#define __G_THREAD_C__
|
#define __G_THREAD_C__
|
||||||
#include "galiasdef.c"
|
#include "galiasdef.c"
|
||||||
|
@ -134,6 +134,11 @@ void g_thread_init (GThreadFunctions *vtable);
|
|||||||
*/
|
*/
|
||||||
void g_thread_init_with_errorcheck_mutexes (GThreadFunctions* vtable);
|
void g_thread_init_with_errorcheck_mutexes (GThreadFunctions* vtable);
|
||||||
|
|
||||||
|
/* Checks if thread support is initialized. Identical to the
|
||||||
|
* g_thread_supported macro but provided for language bindings.
|
||||||
|
*/
|
||||||
|
gboolean g_thread_get_initialized (void);
|
||||||
|
|
||||||
/* A random number to recognize debug calls to g_mutex_... */
|
/* A random number to recognize debug calls to g_mutex_... */
|
||||||
#define G_MUTEX_DEBUG_MAGIC 0xf8e18ad7
|
#define G_MUTEX_DEBUG_MAGIC 0xf8e18ad7
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user