|
From: John M M. <jo...@us...> - 2003-03-05 19:57:55
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory sc8-pr-cvs1:/tmp/cvs-serv20218/squeak/platforms/Mac OS/vm
Modified Files:
sqMacUIEvents.c
Log Message:
3.5.0b4 Handle Safari browser pthread needs
Index: sqMacUIEvents.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacUIEvents.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** sqMacUIEvents.c 14 Nov 2002 20:06:51 -0000 1.12
--- sqMacUIEvents.c 5 Mar 2003 19:57:48 -0000 1.13
***************
*** 132,136 ****
Boolean IsKeyDown(void);
! #ifndef I_AM_CARBON_EVENT
int HandleEvents(void);
void HandleMenu(int mSelect);
--- 132,136 ----
Boolean IsKeyDown(void);
! #if !defined(I_AM_CARBON_EVENT) || PLUGIN
int HandleEvents(void);
void HandleMenu(int mSelect);
***************
*** 1853,1856 ****
--- 1853,1857 ----
}
+ #ifndef PLUGIN
int ioProcessEvents(void) {
if (gQuitNowRightNow) {
***************
*** 1860,1863 ****
--- 1861,1865 ----
}
}
+ #endif
int getUIToLock(long *data) {
|