Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Hostetler <jeffhost@microsoft.com>2019-04-15 23:39:48 +0300
committerJunio C Hamano <gitster@pobox.com>2019-04-16 07:37:07 +0300
commit26c6f251d754a33c188ce7ad8f5ea6cb0bc740d7 (patch)
treef61f6d37e895311970bec2daec7bc7ab329a666f /common-main.c
parentbce9db6de97c95882a7c46836bb6cc90acf0fef0 (diff)
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.c2
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();