|
From: John M M. <jo...@us...> - 2004-04-23 20:47:27
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2368/squeak/platforms/Mac OS/vm Modified Files: sqMacMemory.c Log Message: 3.7.3b4 Allow browser plugin VM to get at 512MB virtual memory under os-x Index: sqMacMemory.c =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacMemory.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** sqMacMemory.c 31 Jul 2003 13:00:57 -0000 1.12 --- sqMacMemory.c 23 Apr 2004 20:47:15 -0000 1.13 *************** *** 107,111 **** minHeapSize; ! #if defined( BROWSERPLUGIN) || (TARGET_API_MAC_CARBON && defined(__MWERKS__)) gMaxHeapSize = gHeapSize = *desiredHeapSize; --- 107,111 ---- minHeapSize; ! #if (TARGET_API_MAC_CARBON && defined(__MWERKS__)) gMaxHeapSize = gHeapSize = *desiredHeapSize; *************** *** 186,190 **** #if TARGET_API_MAC_CARBON #ifdef BROWSERPLUGIN ! DisposePtr((void *) memory); #endif #else --- 186,190 ---- #if TARGET_API_MAC_CARBON #ifdef BROWSERPLUGIN ! munmap((void *) memory,gMaxHeapSize); #endif #else |