From: Jack Jansen Date: Thu, 30 Sep 1999 11:20:11 +0000 (+0000) Subject: Bigger buffer size for C profiler (if profiling is enabled). X-Git-Tag: v1.6a1~856 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e742487ca506dfe7c71ae6122088b2a680881618;p=python Bigger buffer size for C profiler (if profiling is enabled). --- diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 24bcd77baa..0fdcb511f2 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -269,7 +269,7 @@ init_common(int *argcp, char ***argvp, int embedded) } #if __profile__ == 1 /* collectSummary or collectDetailed, timebase, #routines, max stack depth */ - ProfilerInit(collectSummary, bestTimeBase, 2000, 150); + ProfilerInit(collectSummary, bestTimeBase, 8000, 250); #endif /* Tell the rest of python about our argc/argv */