[pypy-commit] pypy vmprof: make this buffer even bigger, we can have more stuff in there

fijal noreply at buildbot.pypy.org
Mon Mar 23 14:24:31 CET 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: vmprof
Changeset: r76516:4025e049f4fb
Date: 2015-03-23 15:21 +0200
http://bitbucket.org/pypy/pypy/changeset/4025e049f4fb/

Log:	make this buffer even bigger, we can have more stuff in there

diff --git a/pypy/module/_vmprof/src/vmprof.c b/pypy/module/_vmprof/src/vmprof.c
--- a/pypy/module/_vmprof/src/vmprof.c
+++ b/pypy/module/_vmprof/src/vmprof.c
@@ -39,7 +39,7 @@
 
 
 static int profile_file = 0;
-static char profile_write_buffer[10000];
+static char profile_write_buffer[100000];
 static int profile_buffer_position = 0;
 void* vmprof_mainloop_func;
 static ptrdiff_t mainloop_sp_offset;


More information about the pypy-commit mailing list