diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-29 13:22:54 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-29 13:22:54 -0400 |
commit | 387eca1b29cbc6f497e2cb26a0bff0b06b50b6a1 (patch) | |
tree | 3a0579e6e6eda333b6315146b5b28ae80714f85c /swaybar | |
parent | 5f915a9d036dac8adbccd9b88100aa80224b0757 (diff) |
Revert "swaybar: Group child processes for signalling"
This reverts commit 8f4bc0a3741b63c64bb6059bb632e7584c595d14.
Diffstat (limited to 'swaybar')
-rw-r--r-- | swaybar/bar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index 3412ff29..5e87eac9 100644 --- a/swaybar/bar.c +++ b/swaybar/bar.c @@ -41,7 +41,6 @@ static void spawn_status_cmd_proc(struct bar *bar) { close(pipefd[0]); dup2(pipefd[1], STDOUT_FILENO); close(pipefd[1]); - setpgid(bar->status_command_pid, 0); char *const cmd[] = { "sh", "-c", @@ -291,7 +290,7 @@ static void free_outputs(list_t *outputs) { static void terminate_status_command(pid_t pid) { if (pid) { // terminate status_command process - int ret = killpg(pid, SIGTERM); + int ret = kill(pid, SIGTERM); if (ret != 0) { sway_log(L_ERROR, "Unable to terminate status_command [pid: %d]", pid); } else { |