summaryrefslogtreecommitdiff
path: root/glibconfig.h.win32.in
diff options
context:
space:
mode:
Diffstat (limited to 'glibconfig.h.win32.in')
-rw-r--r--glibconfig.h.win32.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/glibconfig.h.win32.in b/glibconfig.h.win32.in
index a4aa9c1b3..a9bf191e8 100644
--- a/glibconfig.h.win32.in
+++ b/glibconfig.h.win32.in
@@ -117,6 +117,7 @@ typedef unsigned long long guint64;
* int i;
* pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;
* printf ("sizeof (pthread_mutex_t) = %d\n", sizeof (pthread_mutex_t));
+ * printf ("sizeof (pthread_t) = %d\n", sizeof (pthread_t));
* printf ("PTHREAD_MUTEX_INITIALIZER = ");
* for (i = 0; i < sizeof (pthread_mutex_t); i++)
* printf ("%u, ", ((unsigned char *) &m)[i]);
@@ -131,8 +132,8 @@ struct _GStaticMutex
{
struct _GMutex *runtime_mutex;
union {
- /* The size of the pad array should be sizeof (pthread_mutext_t) */
- /* This value corresponds to the 1999-04-07 version of pthreads-win32 */
+ /* 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;