Bug 891694 - Increase the maximum amount dumped per line in a GC log from 1kb to 32kb. r=njn

This commit is contained in:
Justin Lebar 2013-07-10 07:01:54 -04:00
Родитель 93a9c67429
Коммит bfe923e1a5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -723,7 +723,7 @@ DumpHeapVisitCell(JSRuntime *rt, void *data, void *thing,
JSGCTraceKind traceKind, size_t thingSize)
{
JSDumpHeapTracer *dtrc = static_cast<JSDumpHeapTracer *>(data);
char cellDesc[1024];
char cellDesc[1024 * 32];
JS_GetTraceThingInfo(cellDesc, sizeof(cellDesc), dtrc, thing, traceKind, true);
fprintf(dtrc->output, "%p %c %s\n", thing, MarkDescriptor(thing), cellDesc);
JS_TraceChildren(dtrc, thing, traceKind);