Skip to content

Commit 39fa714

Browse files
committed
Revert "trace2: classify some child processes"
This reverts commit 95597bd.
1 parent 2dc5fab commit 39fa714

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

editor.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ static int launch_specified_editor(const char *editor, const char *path,
7878
p.argv = args;
7979
p.env = env;
8080
p.use_shell = 1;
81-
p.trace2_child_class = "editor";
8281
if (start_command(&p) < 0)
8382
return error("unable to start editor '%s'", editor);
8483

pager.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ void prepare_pager_args(struct child_process *pager_process, const char *pager)
103103
argv_array_push(&pager_process->args, pager);
104104
pager_process->use_shell = 1;
105105
setup_pager_env(&pager_process->env_array);
106-
pager_process->trace2_child_class = "pager";
107106
}
108107

109108
void setup_pager(void)

sub-process.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ int subprocess_start(struct hashmap *hashmap, struct subprocess_entry *entry, co
8888
process->out = -1;
8989
process->clean_on_exit = 1;
9090
process->clean_on_exit_handler = subprocess_exit_handler;
91-
process->trace2_child_class = "subprocess";
9291

9392
err = start_command(process);
9493
if (err) {

0 commit comments

Comments
 (0)