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
parent f21d5e810c
commit c3cd8006d4
2 changed files with 2 additions and 2 deletions

View File

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

View File

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