Skip to content

Commit

Permalink
Revert "trace2: classify some child processes"
Browse files Browse the repository at this point in the history
This reverts commit 95597bd.
  • Loading branch information
jeffhostetler committed Dec 21, 2018
1 parent 2dc5fab commit 39fa714
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion editor.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ 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);

Expand Down
1 change: 0 additions & 1 deletion pager.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ 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)
Expand Down
1 change: 0 additions & 1 deletion sub-process.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ int subprocess_start(struct hashmap *hashmap, struct subprocess_entry *entry, co
process->out = -1;
process->clean_on_exit = 1;
process->clean_on_exit_handler = subprocess_exit_handler;
process->trace2_child_class = "subprocess";

err = start_command(process);
if (err) {
Expand Down

0 comments on commit 39fa714

Please sign in to comment.