# HG changeset patch # User Mads Kiilerich # Date 2013-01-29 19:03:51 # Node ID 68eecbaf1bd32a616748331cc9f22d55b1316ce3 # Parent a3b2dc1aa909e22b1c16cc0e46d17d04105e0e15 profiling: add documentation of lsprof 'sort' and 'nested' diff --git a/mercurial/help/config.txt b/mercurial/help/config.txt --- a/mercurial/help/config.txt +++ b/mercurial/help/config.txt @@ -990,6 +990,19 @@ profiling is done using lsprof. file exists, it is replaced. Default: None, data is printed on stderr +``sort`` + Sort field. Specific to the ``ls`` instrumenting profiler. + One of ``callcount``, ``reccallcount``, ``totaltime`` and + ``inlinetime``. + Default: inlinetime. + +``nested`` + Show at most this number of lines of drill-down info in a tree structure + after each main entry. This can help explain the difference between Total + and Inline. + Specific to the ``ls`` instrumenting profiler. + Default: 5. + ``revsetalias`` ---------------