[glib/wip/mutexes: 49/58] Merge g_thread_functions_for_glib_use
- From: Ryan Lortie <ryanl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/wip/mutexes: 49/58] Merge g_thread_functions_for_glib_use
- Date: Mon, 19 Sep 2011 05:16:11 +0000 (UTC)
commit 835a6574527513f4aa6232f007e9a10d8ea674b9
Author: Ryan Lortie <desrt desrt ca>
Date: Mon Sep 19 00:03:40 2011 -0400
Merge g_thread_functions_for_glib_use
Move the now-identical copies of g_thread_functions_for_glib_use from
gthread-{posix,win32}.c back into gthread.c.
glib/gthread-posix.c | 25 -------------------------
glib/gthread-win32.c | 25 -------------------------
glib/gthread.c | 25 +++++++++++++++++++++++++
3 files changed, 25 insertions(+), 50 deletions(-)
---
diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c
index af53ae2..01bd092 100644
--- a/glib/gthread-posix.c
+++ b/glib/gthread-posix.c
@@ -585,29 +585,4 @@ g_system_thread_equal (gpointer thread1,
}
/* {{{1 Epilogue */
-GThreadFunctions g_thread_functions_for_glib_use =
-{
- g_mutex_new,
- g_mutex_lock,
- g_mutex_trylock,
- g_mutex_unlock,
- g_mutex_free,
- g_cond_new,
- g_cond_signal,
- g_cond_broadcast,
- g_cond_wait,
- g_cond_timed_wait,
- g_cond_free,
- g_private_new,
- g_private_get,
- g_private_set,
- NULL,
- g_thread_yield,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
-};
-
/* vim:set foldmethod=marker: */
diff --git a/glib/gthread-win32.c b/glib/gthread-win32.c
index 7f8fb4f..2ed1d92 100644
--- a/glib/gthread-win32.c
+++ b/glib/gthread-win32.c
@@ -752,31 +752,6 @@ g_thread_xp_init (void)
/* {{{1 Epilogue */
-GThreadFunctions g_thread_functions_for_glib_use =
-{
- g_mutex_new, /* mutex */
- g_mutex_lock,
- g_mutex_trylock,
- g_mutex_unlock,
- g_mutex_free,
- g_cond_new, /* condition */
- g_cond_signal,
- g_cond_broadcast,
- g_cond_wait,
- g_cond_timed_wait,
- g_cond_free,
- g_private_new, /* private thread data */
- g_private_get,
- g_private_set,
- NULL, /* thread */
- g_thread_yield,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL
-};
-
void
_g_thread_impl_init (void)
{
diff --git a/glib/gthread.c b/glib/gthread.c
index a9b162d..9bdc6e6 100644
--- a/glib/gthread.c
+++ b/glib/gthread.c
@@ -2425,3 +2425,28 @@ g_private_new (GDestroyNotify notify)
return key;
}
+
+GThreadFunctions g_thread_functions_for_glib_use =
+{
+ g_mutex_new,
+ g_mutex_lock,
+ g_mutex_trylock,
+ g_mutex_unlock,
+ g_mutex_free,
+ g_cond_new,
+ g_cond_signal,
+ g_cond_broadcast,
+ g_cond_wait,
+ g_cond_timed_wait,
+ g_cond_free,
+ g_private_new,
+ g_private_get,
+ g_private_set,
+ NULL,
+ g_thread_yield,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]