diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1999-09-30 11:20:11 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1999-09-30 11:20:11 (GMT) |
commit | e742487ca506dfe7c71ae6122088b2a680881618 (patch) | |
tree | c28ed676a862399d6beb42c961ae21f360302393 | |
parent | fac3008e77310bb206ce85169f01426fd2124dd9 (diff) | |
download | cpython-e742487ca506dfe7c71ae6122088b2a680881618.zip cpython-e742487ca506dfe7c71ae6122088b2a680881618.tar.gz cpython-e742487ca506dfe7c71ae6122088b2a680881618.tar.bz2 |
Bigger buffer size for C profiler (if profiling is enabled).
-rw-r--r-- | Mac/Python/macmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |