about summary refs log tree commit diff
path: root/Src/Modules/zprof.c
Commit message (Collapse)AuthorAgeFilesLines
* 45923 (with memory leak fixed, cf. 45924): zprof: Don't tally all anonymous ↵Daniel Shahaf2020-05-281-3/+28
| | | | | | | | | | | | | | | | | | | | | | | | | functions as though they were a single function named "(anon)". Before: % zmodload zsh/zprof % () : % () : % zprof num calls time self name ----------------------------------------------------------------------------------- 1) 2 0.08 0.04 100.00% 0.08 0.04 100.00% (anon) After: % zmodload zsh/zprof % () : % () : % zprof num calls time self name ----------------------------------------------------------------------------------- 1) 1 0.04 0.04 50.45% 0.04 0.04 50.45% (anon) [:3] 2) 1 0.04 0.04 49.55% 0.04 0.04 49.55% (anon) [:2]
* 23665: autoloading of module features and related tweaksPeter Stephenson2007-07-061-5/+5
|
* see 23479: add initial features support for modulesPeter Stephenson2007-05-281-4/+25
|
* Marked unused parameters with the new UNUSED() macro.Wayne Davison2004-06-021-2/+2
|
* 17582: Improved option argument handling.Peter Stephenson2002-08-271-2/+2
| | | | unposted: Updated version to 4.1.0-dev-6 because of interface change.
* Silence compiler warnings.Bart Schaefer2001-05-281-2/+2
|
* make the zprof wrapper function be more careful, avoiding almost all of the ↵Sven Wischnowsky2001-05-281-48/+59
| | | | code when the module is being unloaded (14504)
* fix misaligned percent output of zprof (13673)Sven Wischnowsky2001-03-201-29/+25
|
* Initial revisionTanaka Akira1999-12-131-0/+328