mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 21:16:15 +01:00
Make the union _GSystemThread::data array 8 bytes on Win64. Not that it
2008-08-04 Tor Lillqvist <tml@novell.com> * glibconfig.h.win32.in: Make the union _GSystemThread::data array 8 bytes on Win64. Not that it matters as the union contains a pointer also anyway, but for equivalence with the configure- generated glibconfig.h svn path=/trunk/; revision=7309
This commit is contained in:
parent
c9211d68fc
commit
fb17a5de30
@ -1,3 +1,10 @@
|
|||||||
|
2008-08-04 Tor Lillqvist <tml@novell.com>
|
||||||
|
|
||||||
|
* glibconfig.h.win32.in: Make the union _GSystemThread::data array
|
||||||
|
8 bytes on Win64. Not that it matters as the union contains a
|
||||||
|
pointer also anyway, but for equivalence with the configure-
|
||||||
|
generated glibconfig.h
|
||||||
|
|
||||||
2008-08-04 Tor Lillqvist <tml@novell.com>
|
2008-08-04 Tor Lillqvist <tml@novell.com>
|
||||||
|
|
||||||
* glib/gmain.c (g_get_current_time): MSDN says: "Do not cast a
|
* glib/gmain.c (g_get_current_time): MSDN says: "Do not cast a
|
||||||
|
@ -200,7 +200,11 @@ typedef struct _GMutex* GStaticMutex;
|
|||||||
typedef union _GSystemThread GSystemThread;
|
typedef union _GSystemThread GSystemThread;
|
||||||
union _GSystemThread
|
union _GSystemThread
|
||||||
{
|
{
|
||||||
|
#ifndef _WIN64
|
||||||
char data[4];
|
char data[4];
|
||||||
|
#else
|
||||||
|
char data[8];
|
||||||
|
#endif
|
||||||
double dummy_double;
|
double dummy_double;
|
||||||
void *dummy_pointer;
|
void *dummy_pointer;
|
||||||
long dummy_long;
|
long dummy_long;
|
||||||
|
Loading…
Reference in New Issue
Block a user