reverted my last commit, g_thread_init() *does* have an implementation.

Thu Feb 17 12:24:55 2000  Tim Janik  <timj@gtk.org>

        * glib.h: reverted my last commit, g_thread_init() *does*
        have an implementation.
This commit is contained in:
Tim Janik 2000-02-17 11:29:17 +00:00 committed by Tim Janik
parent a1c9dc62e8
commit f657d43811
10 changed files with 52 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

View File

@ -1,3 +1,8 @@
Thu Feb 17 12:24:55 2000 Tim Janik <timj@gtk.org>
* glib.h: reverted my last commit, g_thread_init() *does*
have an implementation.
Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org> Thu Feb 17 04:25:02 2000 Tim Janik <timj@gtk.org>
* glib.h: remove extraneous prototype for g_thread_init(). * glib.h: remove extraneous prototype for g_thread_init().

6
glib.h
View File

@ -2684,6 +2684,12 @@ GUTILS_C_VAR GThreadFunctions g_thread_functions_for_glib_use;
GUTILS_C_VAR gboolean g_thread_use_default_impl; GUTILS_C_VAR gboolean g_thread_use_default_impl;
GUTILS_C_VAR gboolean g_threads_got_initialized; GUTILS_C_VAR gboolean g_threads_got_initialized;
/* initializes the mutex/cond/private implementation for glib, might
* only be called once, and must not be called directly or indirectly
* from another glib-function, e.g. as a callback.
*/
void g_thread_init (GThreadFunctions *vtable);
/* internal function for fallback static mutex implementation */ /* internal function for fallback static mutex implementation */
GMutex* g_static_mutex_get_mutex_impl (GMutex **mutex); GMutex* g_static_mutex_get_mutex_impl (GMutex **mutex);

View File

@ -2684,6 +2684,12 @@ GUTILS_C_VAR GThreadFunctions g_thread_functions_for_glib_use;
GUTILS_C_VAR gboolean g_thread_use_default_impl; GUTILS_C_VAR gboolean g_thread_use_default_impl;
GUTILS_C_VAR gboolean g_threads_got_initialized; GUTILS_C_VAR gboolean g_threads_got_initialized;
/* initializes the mutex/cond/private implementation for glib, might
* only be called once, and must not be called directly or indirectly
* from another glib-function, e.g. as a callback.
*/
void g_thread_init (GThreadFunctions *vtable);
/* internal function for fallback static mutex implementation */ /* internal function for fallback static mutex implementation */
GMutex* g_static_mutex_get_mutex_impl (GMutex **mutex); GMutex* g_static_mutex_get_mutex_impl (GMutex **mutex);