diff options
author | Tor Lillqvist <tml@iki.fi> | 2001-02-01 22:28:48 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2001-02-01 22:28:48 +0000 |
commit | c2bd295c57059ac0c14d6fbb3741b1f69dbc4ff3 (patch) | |
tree | 7fc1c2054f4d0ee82d94cdbc25871a9355855dc1 /glibconfig.h.win32.in | |
parent | 5434105fcb432bd2549359e6e4d641d57ea6f632 (diff) | |
download | glib-c2bd295c57059ac0c14d6fbb3741b1f69dbc4ff3.tar.gz |
giochannel.h giowin32.c Stylistic cleanups. Use G_STRLOC in g_warning()
2001-02-02 Tor Lillqvist <tml@iki.fi>
* giochannel.h
* giowin32.c
* gmain.c: Stylistic cleanups. Use G_STRLOC in g_warning() calls.
* glib.def: Add missing functions.
2001-01-31 Tor Lillqvist <tml@iki.fi>
* glibconfig.h.win32.in: Corresponding change as below to
GStaticMutex.
Diffstat (limited to 'glibconfig.h.win32.in')
-rw-r--r-- | glibconfig.h.win32.in | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/glibconfig.h.win32.in b/glibconfig.h.win32.in index 482a19c26..49ecbf079 100644 --- a/glibconfig.h.win32.in +++ b/glibconfig.h.win32.in @@ -134,16 +134,13 @@ typedef struct _GStaticMutex GStaticMutex; struct _GStaticMutex { struct _GMutex *runtime_mutex; - struct { - union { - /* The size of the pad array should be sizeof (pthread_mutex_t) */ - /* This value corresponds to the 1999-05-30 version of pthreads-win32 */ - char pad[4]; - double dummy_double; - void *dummy_pointer; - long dummy_long; - } mutex; - void *debug_info; + union { + /* The size of the pad array should be sizeof (pthread_mutex_t) */ + /* This value corresponds to the 1999-05-30 version of pthreads-win32 */ + char pad[4]; + double dummy_double; + void *dummy_pointer; + long dummy_long; } static_mutex; }; /* This should be NULL followed by the bytes in PTHREAD_MUTEX_INITIALIZER */ |