[Avida-cvs] [avida-svn] r1010 - trunk/source/platform/win32-pthread

brysonda at myxo.css.msu.edu brysonda at myxo.css.msu.edu
Thu Sep 28 14:43:15 PDT 2006


Author: brysonda
Date: 2006-09-28 17:43:15 -0400 (Thu, 28 Sep 2006)
New Revision: 1010

Modified:
   trunk/source/platform/win32-pthread/pthread.h
Log:
Update win32 pthread header file to properly match and macro out pthread_*_init calls.

Modified: trunk/source/platform/win32-pthread/pthread.h
===================================================================
--- trunk/source/platform/win32-pthread/pthread.h	2006-09-28 21:12:34 UTC (rev 1009)
+++ trunk/source/platform/win32-pthread/pthread.h	2006-09-28 21:43:15 UTC (rev 1010)
@@ -15,14 +15,14 @@
 
 // Just define away mutex support
 #define pthread_mutex_t int
-#define pthread_mutex_init(x)
+#define pthread_mutex_init(x, y)
 #define pthread_mutex_lock(x)
 #define pthread_mutex_unlock(x)
 #define pthread_mutex_destroy(x)
 
 // Just define away condition variable support
 #define pthread_cond_t int
-#define pthread_cond_init(x)
+#define pthread_cond_init(x, y)
 #define pthread_cond_wait(x, y)
 #define pthread_cond_signal(x)
 #define pthread_cond_broadcast(x)




More information about the Avida-cvs mailing list