summaryrefslogtreecommitdiff
path: root/trace2.c
diff options
context:
space:
mode:
authorJeff Hostetler <jeffhost@microsoft.com>2019-04-15 20:39:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-04-16 04:37:07 (GMT)
commit26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7 (patch)
treef61f6d37e895311970bec2daec7bc7ab329a666f /trace2.c
parentbce9db6de97c95882a7c46836bb6cc90acf0fef0 (diff)
downloadgit-26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7.zip
git-26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7.tar.gz
git-26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7.tar.bz2
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 'trace2.c')
-rw-r--r--trace2.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/trace2.c b/trace2.c
index 490b3f0..6baa65c 100644
--- a/trace2.c
+++ b/trace2.c
@@ -213,6 +213,8 @@ int trace2_cmd_exit_fl(const char *file, int line, int code)
if (!trace2_enabled)
return code;
+ trace2_collect_process_info(TRACE2_PROCESS_INFO_EXIT);
+
tr2main_exit_code = code;
us_now = getnanotime() / 1000;