提交 933da83a 编写于 作者: C Chris Wilson 提交者: Ingo Molnar

perf: Propagate term signal to child

If we launch the child on behalf of the user, ensure that it dies
along with ourselves when we are interrupted.
Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
LKML-Reference: <1254616502-4728-1-git-send-email-chris@chris-wilson.co.uk>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 1ad0560e
...@@ -41,6 +41,7 @@ static int raw_samples = 0; ...@@ -41,6 +41,7 @@ static int raw_samples = 0;
static int system_wide = 0; static int system_wide = 0;
static int profile_cpu = -1; static int profile_cpu = -1;
static pid_t target_pid = -1; static pid_t target_pid = -1;
static pid_t child_pid = -1;
static int inherit = 1; static int inherit = 1;
static int force = 0; static int force = 0;
static int append_file = 0; static int append_file = 0;
...@@ -184,6 +185,9 @@ static void sig_handler(int sig) ...@@ -184,6 +185,9 @@ static void sig_handler(int sig)
static void sig_atexit(void) static void sig_atexit(void)
{ {
if (child_pid != -1)
kill(child_pid, SIGTERM);
if (signr == -1) if (signr == -1)
return; return;
...@@ -610,6 +614,8 @@ static int __cmd_record(int argc, const char **argv) ...@@ -610,6 +614,8 @@ static int __cmd_record(int argc, const char **argv)
exit(-1); exit(-1);
} }
} }
child_pid = pid;
} }
if (realtime_prio) { if (realtime_prio) {
......
...@@ -69,7 +69,8 @@ static int run_idx = 0; ...@@ -69,7 +69,8 @@ static int run_idx = 0;
static int run_count = 1; static int run_count = 1;
static int inherit = 1; static int inherit = 1;
static int scale = 1; static int scale = 1;
static int target_pid = -1; static pid_t target_pid = -1;
static pid_t child_pid = -1;
static int null_run = 0; static int null_run = 0;
static int fd[MAX_NR_CPUS][MAX_COUNTERS]; static int fd[MAX_NR_CPUS][MAX_COUNTERS];
...@@ -285,6 +286,8 @@ static int run_perf_stat(int argc __used, const char **argv) ...@@ -285,6 +286,8 @@ static int run_perf_stat(int argc __used, const char **argv)
exit(-1); exit(-1);
} }
child_pid = pid;
/* /*
* Wait for the child to be ready to exec. * Wait for the child to be ready to exec.
*/ */
...@@ -433,6 +436,9 @@ static void skip_signal(int signo) ...@@ -433,6 +436,9 @@ static void skip_signal(int signo)
static void sig_atexit(void) static void sig_atexit(void)
{ {
if (child_pid != -1)
kill(child_pid, SIGTERM);
if (signr == -1) if (signr == -1)
return; return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册