* Up the defaults for zone and hunk memory since some mods (UT) have large

memory requirements that will have increased versus 1.32b due to some of the
  alignment fixes
This commit is contained in:
Tim Angus 2006-01-05 16:49:59 +00:00
parent 7b31efbec7
commit 560b02488c
1 changed files with 17 additions and 14 deletions

View File

@ -38,13 +38,11 @@ int demo_protocols[] =
#define MIN_DEDICATED_COMHUNKMEGS 1 #define MIN_DEDICATED_COMHUNKMEGS 1
#define MIN_COMHUNKMEGS 56 #define MIN_COMHUNKMEGS 56
#ifdef MACOS_X #define DEF_COMHUNKMEGS 64
#define DEF_COMHUNKMEGS "64" #define DEF_COMZONEMEGS 24
#define DEF_COMZONEMEGS "24" #define STRING(x) #x
#else #define DEF_COMHUNKMEGS_S STRING(DEF_COMHUNKMEGS)
#define DEF_COMHUNKMEGS "56" #define DEF_COMZONEMEGS_S STRING(DEF_COMZONEMEGS)
#define DEF_COMZONEMEGS "16"
#endif
int com_argc; int com_argc;
char *com_argv[MAX_NUM_ARGVS+1]; char *com_argv[MAX_NUM_ARGVS+1];
@ -414,7 +412,7 @@ Com_StartupVariable
Searches for command line parameters that are set commands. Searches for command line parameters that are set commands.
If match is not NULL, only that cvar will be looked for. If match is not NULL, only that cvar will be looked for.
That is necessary because cddir and basedir need to be set That is necessary because cddir and basedir need to be set
before the filesystem is started, but all other sets shouls before the filesystem is started, but all other sets should
be after execing the config and default. be after execing the config and default.
=============== ===============
*/ */
@ -1385,11 +1383,16 @@ void Com_InitSmallZoneMemory( void ) {
void Com_InitZoneMemory( void ) { void Com_InitZoneMemory( void ) {
cvar_t *cv; cvar_t *cv;
// allocate the random block zone
cv = Cvar_Get( "com_zoneMegs", DEF_COMZONEMEGS, CVAR_LATCH | CVAR_ARCHIVE );
if ( cv->integer < 20 ) { //FIXME: 05/01/06 com_zoneMegs is useless right now as neither q3config.cfg nor
s_zoneTotal = 1024 * 1024 * 16; // Com_StartupVariable have been executed by this point. The net result is that
// s_zoneTotal will always be set to the default value.
// allocate the random block zone
cv = Cvar_Get( "com_zoneMegs", DEF_COMZONEMEGS_S, CVAR_LATCH | CVAR_ARCHIVE );
if ( cv->integer < DEF_COMZONEMEGS ) {
s_zoneTotal = 1024 * 1024 * DEF_COMZONEMEGS;
} else { } else {
s_zoneTotal = cv->integer * 1024 * 1024; s_zoneTotal = cv->integer * 1024 * 1024;
} }
@ -1500,7 +1503,7 @@ void Com_InitHunkMemory( void ) {
} }
// allocate the stack based hunk allocator // allocate the stack based hunk allocator
cv = Cvar_Get( "com_hunkMegs", DEF_COMHUNKMEGS, CVAR_LATCH | CVAR_ARCHIVE ); cv = Cvar_Get( "com_hunkMegs", DEF_COMHUNKMEGS_S, CVAR_LATCH | CVAR_ARCHIVE );
// if we are not dedicated min allocation is 56, otherwise min is 1 // if we are not dedicated min allocation is 56, otherwise min is 1
if (com_dedicated && com_dedicated->integer) { if (com_dedicated && com_dedicated->integer) {