[Avida-cvs] [avida-svn] r1011 - development/source/platform/win32-pthread

brysonda at myxo.css.msu.edu brysonda at myxo.css.msu.edu
Fri Sep 29 06:27:28 PDT 2006


Author: brysonda
Date: 2006-09-29 09:27:28 -0400 (Fri, 29 Sep 2006)
New Revision: 1011

Modified:
   development/source/platform/win32-pthread/pthread.h
Log:
Implement the same fixes to pthread.h in development

Modified: development/source/platform/win32-pthread/pthread.h
===================================================================
--- development/source/platform/win32-pthread/pthread.h	2006-09-28 21:43:15 UTC (rev 1010)
+++ development/source/platform/win32-pthread/pthread.h	2006-09-29 13:27:28 UTC (rev 1011)
@@ -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