]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/kill.h
Make Watchdog Signal Configurable
[thirdparty/systemd.git] / src / core / kill.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
4819ff03
LP
2#pragma once
3
4819ff03
LP
4typedef struct KillContext KillContext;
5
6#include <stdbool.h>
7#include <stdio.h>
8
44a6b1b6
ZJS
9#include "macro.h"
10
4819ff03 11typedef enum KillMode {
c74f17d9 12 /* The kill mode is a property of a unit. */
4819ff03
LP
13 KILL_CONTROL_GROUP = 0,
14 KILL_PROCESS,
58ea275a 15 KILL_MIXED,
4819ff03
LP
16 KILL_NONE,
17 _KILL_MODE_MAX,
18 _KILL_MODE_INVALID = -1
19} KillMode;
20
21struct KillContext {
22 KillMode kill_mode;
23 int kill_signal;
fbb48d4c 24 int final_kill_signal;
4819ff03 25 bool send_sigkill;
82659fd7 26 bool send_sighup;
c87700a1 27 int watchdog_signal;
4819ff03
LP
28};
29
30typedef enum KillWho {
c74f17d9 31 /* Kill who is a property of an operation */
4819ff03
LP
32 KILL_MAIN,
33 KILL_CONTROL,
34 KILL_ALL,
ac5e3a50
JS
35 KILL_MAIN_FAIL,
36 KILL_CONTROL_FAIL,
37 KILL_ALL_FAIL,
4819ff03
LP
38 _KILL_WHO_MAX,
39 _KILL_WHO_INVALID = -1
40} KillWho;
41
42void kill_context_init(KillContext *c);
43void kill_context_dump(KillContext *c, FILE *f, const char *prefix);
44
44a6b1b6
ZJS
45const char *kill_mode_to_string(KillMode k) _const_;
46KillMode kill_mode_from_string(const char *s) _pure_;
4819ff03 47
44a6b1b6
ZJS
48const char *kill_who_to_string(KillWho k) _const_;
49KillWho kill_who_from_string(const char *s) _pure_;