mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-21 08:28:53 +02:00
Remove the semicolon from the definition of g_once(), so that
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de> * configure.in: Remove the semicolon from the definition of g_once(), so that GPOINTER_TO_INT (g_once (...)) works.
This commit is contained in:
committed by
Matthias Clasen
parent
c582b7ad60
commit
4dbdd6e05e
@@ -1,3 +1,8 @@
|
|||||||
|
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Remove the semicolon from the definition of
|
||||||
|
g_once(), so that GPOINTER_TO_INT (g_once (...)) works.
|
||||||
|
|
||||||
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* tests/printf-test.c: Change the %e tests to not check for
|
* tests/printf-test.c: Change the %e tests to not check for
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Remove the semicolon from the definition of
|
||||||
|
g_once(), so that GPOINTER_TO_INT (g_once (...)) works.
|
||||||
|
|
||||||
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* tests/printf-test.c: Change the %e tests to not check for
|
* tests/printf-test.c: Change the %e tests to not check for
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Remove the semicolon from the definition of
|
||||||
|
g_once(), so that GPOINTER_TO_INT (g_once (...)) works.
|
||||||
|
|
||||||
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* tests/printf-test.c: Change the %e tests to not check for
|
* tests/printf-test.c: Change the %e tests to not check for
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Remove the semicolon from the definition of
|
||||||
|
g_once(), so that GPOINTER_TO_INT (g_once (...)) works.
|
||||||
|
|
||||||
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* tests/printf-test.c: Change the %e tests to not check for
|
* tests/printf-test.c: Change the %e tests to not check for
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Remove the semicolon from the definition of
|
||||||
|
g_once(), so that GPOINTER_TO_INT (g_once (...)) works.
|
||||||
|
|
||||||
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* tests/printf-test.c: Change the %e tests to not check for
|
* tests/printf-test.c: Change the %e tests to not check for
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Remove the semicolon from the definition of
|
||||||
|
g_once(), so that GPOINTER_TO_INT (g_once (...)) works.
|
||||||
|
|
||||||
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
Tue Oct 28 23:38:30 2003 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* tests/printf-test.c: Change the %e tests to not check for
|
* tests/printf-test.c: Change the %e tests to not check for
|
||||||
|
@@ -2200,7 +2200,7 @@ _______EOF
|
|||||||
/* double checked locking can be used on this platform */
|
/* double checked locking can be used on this platform */
|
||||||
#define g_once(once, func, arg) \\
|
#define g_once(once, func, arg) \\
|
||||||
((once)->status == G_ONCE_STATUS_READY ? (once)->retval : \\
|
((once)->status == G_ONCE_STATUS_READY ? (once)->retval : \\
|
||||||
g_once_impl (once, func, arg));
|
g_once_impl (once, func, arg))
|
||||||
#define g_static_mutex_get_mutex_impl_shortcut(mutex) \\
|
#define g_static_mutex_get_mutex_impl_shortcut(mutex) \\
|
||||||
(*(mutex) ? *(mutex) : g_static_mutex_get_mutex_impl (mutex))
|
(*(mutex) ? *(mutex) : g_static_mutex_get_mutex_impl (mutex))
|
||||||
_______EOF
|
_______EOF
|
||||||
|
Reference in New Issue
Block a user