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>
This commit is contained in:
parent
942b2740ff
commit
eee73d1dce
1
editor.c
1
editor.c
@ -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);
|
||||
|
||||
|
1
pager.c
1
pager.c
@ -100,6 +100,7 @@ void prepare_pager_args(struct child_process *pager_process, const char *pager)
|
||||
argv_array_push(&pager_process->args, pager);
|
||||
pager_process->use_shell = 1;
|
||||
setup_pager_env(&pager_process->env_array);
|
||||
pager_process->trace2_child_class = "pager";
|
||||
}
|
||||
|
||||
void setup_pager(void)
|
||||
|
Loading…
Reference in New Issue
Block a user