|
From: John M M. <jo...@us...> - 2002-03-19 21:32:47
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory usw-pr-cvs1:/tmp/cvs-serv2878/squeak/platforms/Mac OS/vm
Modified Files:
sqMacTime.c
Log Message:
3.2.5b7 minor change to make classic VM to compile, no pthread logic there
Index: sqMacTime.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacTime.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** sqMacTime.c 15 Mar 2002 21:06:26 -0000 1.5
--- sqMacTime.c 19 Mar 2002 21:32:44 -0000 1.6
***************
*** 209,214 ****
--- 209,216 ----
+ #if defined ( __APPLE__ ) && defined ( __MACH__ )
pthread_mutex_t gSleepLock;
pthread_cond_t gSleepLockCondition;
+ #endif
int ioRelinquishProcessorForMicroseconds(int microSeconds) {
|