Author: Maciej Fijalkowski <fij...@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;
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to