diff options
author | Jeff Hostetler <jeffhost@microsoft.com> | 2019-04-15 22:39:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-04-16 06:37:07 +0200 |
commit | 26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7 (patch) | |
tree | f61f6d37e895311970bec2daec7bc7ab329a666f /common-main.c | |
parent | trace2: use system/global config for default trace2 settings (diff) | |
download | git-26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7.tar.xz git-26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7.zip |
trace2: report peak memory usage of the process
Teach Windows version of git to report peak memory usage
during exit() processing.
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'common-main.c')
-rw-r--r-- | common-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common-main.c b/common-main.c index 299ca62a72..582a7b1886 100644 --- a/common-main.c +++ b/common-main.c @@ -41,7 +41,7 @@ int main(int argc, const char **argv) trace2_initialize(); trace2_cmd_start(argv); - trace2_collect_process_info(); + trace2_collect_process_info(TRACE2_PROCESS_INFO_STARTUP); git_setup_gettext(); |