From fc8bc4b5c04501f17f7a3c3a5f3efafbf9b2a82e Mon Sep 17 00:00:00 2001 From: Yinan Zhang Date: Mon, 13 Apr 2020 11:51:25 -0700 Subject: [PATCH] Increase dump buffer for prof last-N list --- src/prof_recent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prof_recent.c b/src/prof_recent.c index fd63d504..ab4ab8d4 100644 --- a/src/prof_recent.c +++ b/src/prof_recent.c @@ -504,7 +504,7 @@ prof_recent_alloc_dump_node(emitter_t *emitter, prof_recent_t *node) { emitter_json_object_end(emitter); } -#define PROF_RECENT_PRINT_BUFSIZE 4096 +#define PROF_RECENT_PRINT_BUFSIZE 65536 void prof_recent_alloc_dump(tsd_t *tsd, write_cb_t *write_cb, void *cbopaque) { buf_writer_t buf_writer;