From e742487ca506dfe7c71ae6122088b2a680881618 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Thu, 30 Sep 1999 11:20:11 +0000 Subject: Bigger buffer size for C profiler (if profiling is enabled). --- Mac/Python/macmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 24bcd77..0fdcb51 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 */ -- cgit v0.12