diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-07-30 01:54:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-07-30 01:54:59 +0200 |
commit | 82659fd7571bda0f3dce9755b89a23c411d53dda (patch) | |
tree | 00ea49ad7be58cc9630f249ad8c7def09939daf7 /src/core/kill.h | |
parent | 5a4555ba6bc8ea086823fb71cb1cb92d4ec087a2 (diff) |
core: optionally send SIGHUP in addition to the configured kill signal
This is useful to fake session ends for processes like shells.
Diffstat (limited to 'src/core/kill.h')
-rw-r--r-- | src/core/kill.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/kill.h b/src/core/kill.h index 71a0513e84..41773f07ae 100644 --- a/src/core/kill.h +++ b/src/core/kill.h @@ -41,6 +41,7 @@ struct KillContext { KillMode kill_mode; int kill_signal; bool send_sigkill; + bool send_sighup; }; typedef enum KillWho { |