The tinderbox problem was due to insufficient STARTUP_TMBUFSIZE, so re-increase the buffer size to 64K (from 16K) and comment out my debugging code.

This commit is contained in:
dbaron@dbaron.org 2007-04-03 18:06:34 -07:00
Родитель 0f6acba91f
Коммит 067795a0de
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -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 {

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

@ -56,7 +56,7 @@
#include "nsTraceMalloc.h"
#include "tmreader.h"
#define DEBUG_tmreader
#undef DEBUG_tmreader
static int accum_byte(FILE *fp, uint32 *uip)
{