|
From: John M M. <jo...@us...> - 2003-10-14 19:46:51
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory sc8-pr-cvs1:/tmp/cvs-serv12418/squeak/platforms/Mac OS/vm
Modified Files:
sqMacTime.c
Log Message:
3.6.0b4 add extra routine ioMSec to call to expensive iomsec call for aio.c which doesn't include sq.h which would #def to the right call. Sigh...
Index: sqMacTime.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacTime.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** sqMacTime.c 4 Oct 2003 04:46:39 -0000 1.12
--- sqMacTime.c 14 Oct 2003 19:46:38 -0000 1.13
***************
*** 281,282 ****
--- 281,289 ----
#endif
}
+ #undef ioMSecs
+ //Issue with unix aio.c sept 2003
+
+ int ioMSecs() {
+ return ioMicroMSecs();
+ }
+
|