diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-10-22 16:11:50 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-22 16:11:50 +0200 |
commit | 8a0867d6c5b47c8697d1ddd815116a548433c718 (patch) | |
tree | 56c81885c60e6b23f543d82c91a901d2fde14791 /src/execute.h | |
parent | 95e501f8ab28e1645453219523c0263754db3f68 (diff) |
systemctl: introduce systemctl kill
Diffstat (limited to 'src/execute.h')
-rw-r--r-- | src/execute.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/execute.h b/src/execute.h index ed61e3c62f..dd84c3d29c 100644 --- a/src/execute.h +++ b/src/execute.h @@ -55,6 +55,14 @@ typedef enum KillMode { _KILL_MODE_INVALID = -1 } KillMode; +typedef enum KillWho { + KILL_MAIN, + KILL_CONTROL, + KILL_ALL, + _KILL_WHO_MAX, + _KILL_WHO_INVALID = -1 +} KillWho; + typedef enum ExecInput { EXEC_INPUT_NULL, EXEC_INPUT_TTY, @@ -202,4 +210,10 @@ int exec_output_from_string(const char *s); const char* exec_input_to_string(ExecInput i); int exec_input_from_string(const char *s); +const char *kill_mode_to_string(KillMode k); +KillMode kill_mode_from_string(const char *s); + +const char *kill_who_to_string(KillWho k); +KillWho kill_who_from_string(const char *s); + #endif |