summaryrefslogtreecommitdiff
path: root/gthread
diff options
context:
space:
mode:
authorManish Singh <yosh@src.gnome.org>1999-10-04 02:32:50 +0000
committerManish Singh <yosh@src.gnome.org>1999-10-04 02:32:50 +0000
commit7ea73a019935e1118935433c86480acc5eee2e05 (patch)
treeb7afcc4761a189dcea1ce0f405f2a585e624f30c /gthread
parent4944d4df46e31275173c5d559792d21b5839a5cd (diff)
downloadglib-7ea73a019935e1118935433c86480acc5eee2e05.tar.gz
glib-7ea73a019935e1118935433c86480acc5eee2e05.tar.bz2
glib-7ea73a019935e1118935433c86480acc5eee2e05.zip
G_OS_FOO #defines. I *think* I got the cygwin and beos stuff right, but
I haven't tested it. The respective porters should fix any screwups -Yosh
Diffstat (limited to 'gthread')
-rw-r--r--gthread/gthread-impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gthread/gthread-impl.c b/gthread/gthread-impl.c
index 726da3931..f353c4608 100644
--- a/gthread/gthread-impl.c
+++ b/gthread/gthread-impl.c
@@ -67,7 +67,7 @@ g_thread_init (GThreadFunctions* init)
else
g_thread_use_default_impl = FALSE;
-#if defined (WIN32) && defined (__GNUC__)
+#if defined (G_OS_WIN32) && defined (__GNUC__)
memcpy(&g_thread_functions_for_glib_use, init, sizeof (*init));
#else
g_thread_functions_for_glib_use = *init;