diff options
author | Jeff Hostetler <jeffhost@microsoft.com> | 2019-02-22 23:25:04 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-02-23 00:27:59 +0100 |
commit | eee73d1dceb307a543de5b8645827033451ab3bc (patch) | |
tree | ba140be4270c619a966421d34e00ebc876826356 /editor.c | |
parent | trace2:data: add trace2 regions to wt-status (diff) | |
download | git-eee73d1dceb307a543de5b8645827033451ab3bc.tar.xz git-eee73d1dceb307a543de5b8645827033451ab3bc.zip |
trace2:data: add editor/pager child classification
Add trace2 process classification for editor and pager
child processes.
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'editor.c')
-rw-r--r-- | editor.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -78,6 +78,7 @@ static int launch_specified_editor(const char *editor, const char *path, p.argv = args; p.env = env; p.use_shell = 1; + p.trace2_child_class = "editor"; if (start_command(&p) < 0) return error("unable to start editor '%s'", editor); |