Try increasing startup buffer size to see if it fixes tinderbox orange.

This commit is contained in:
dbaron@dbaron.org 2007-04-03 17:39:56 -07:00
Родитель 970f522105
Коммит 731c109c0d
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -274,7 +274,7 @@ struct AllocationFuncs
typedef struct logfile logfile;
#define STARTUP_TMBUFSIZE (16 * 1024)
#define STARTUP_TMBUFSIZE (64 * 1024)
#define LOGFILE_TMBUFSIZE (16 * 1024)
struct logfile {
@ -384,6 +384,8 @@ static void flush_logfile(logfile *fp)
bp += cnt;
len -= cnt;
} while (len > 0);
} else {
fprintf(stderr, "### nsTraceMalloc: can't flush to closed log file\n");
}
fp->simsize += len;
}