diff options
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 |