Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29750/squeak/platforms/Mac OS/vm
Modified Files:
sqMacMain.c
Log Message:
3.7.2b1 Changes for NPSqueak and full screen fixes for Safari 1.2(V125). Add unicode values for classic mac instead of returning historical keycode numbers.
Index: sqMacMain.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacMain.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** sqMacMain.c 2 Dec 2003 04:52:46 -0000 1.19
--- sqMacMain.c 19 Feb 2004 04:34:34 -0000 1.20
***************
*** 92,96 ****
#if I_AM_CARBON_EVENT
#include <pthread.h>
! extern pthread_mutex_t gEventQueueLock,gEventUILock,gEventDrawLock,gSleepLock;
extern pthread_cond_t gEventUILockCondition,gSleepLockCondition;
--- 92,96 ----
#if I_AM_CARBON_EVENT
#include <pthread.h>
! extern pthread_mutex_t gEventQueueLock,gEventUILock,gEventDrawLock,gEventNSAccept,gSleepLock;
extern pthread_cond_t gEventUILockCondition,gSleepLockCondition;
***************
*** 321,324 ****
--- 321,325 ----
pthread_mutex_init(&gEventUILock, NULL);
pthread_mutex_init(&gEventDrawLock, NULL);
+ pthread_mutex_init(&gEventNSAccept, NULL);
pthread_cond_init(&gEventUILockCondition,NULL);
err = pthread_create(&gSqueakPThread,null,(void *) interpret, null);
***************
*** 609,612 ****
--- 610,614 ----
pthread_mutex_destroy(&gEventUILock);
pthread_mutex_destroy(&gEventDrawLock);
+ pthread_mutex_destroy(&gEventNSAccept);
pthread_mutex_destroy(&gSleepLock);
pthread_cond_destroy(&gEventUILockCondition);
|