]> git.sur5r.net Git - i3/i3/commit
i3bar: Group child processes for signalling
authorTony Crisci <tony@dubstepdish.com>
Sun, 1 Dec 2013 06:37:43 +0000 (01:37 -0500)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 4 Dec 2013 18:45:19 +0000 (19:45 +0100)
commit39f15da82f69cd91d50c2d398d636e5efbd2d829
tree78bf978182a0975f3220bdbabed59ae4afee3bf8
parent454f11755e7d656174c7729e936f2839415d7bde
i3bar: Group child processes for signalling

Set the process group id of the child process by calling `setpgid` after
forking and before calling `exec`.

The process group ID will be set to the process ID of the forked
process. Processes spawned by this child process will also have this
group ID.

Send signals to the process group with `killpg`. This will send the
signal to all of the process group.

fixes #1128
i3bar/src/child.c