]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/kill.h
core: always initialize ExecParamters.bus_endpoint_fd to -1
[thirdparty/systemd.git] / src / core / kill.h
CommitLineData
4819ff03
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#pragma once
4
5/***
6 This file is part of systemd.
7
8 Copyright 2012 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24typedef struct KillContext KillContext;
25
26#include <stdbool.h>
27#include <stdio.h>
28
44a6b1b6
ZJS
29#include "macro.h"
30
4819ff03 31typedef enum KillMode {
c74f17d9 32 /* The kill mode is a property of a unit. */
4819ff03
LP
33 KILL_CONTROL_GROUP = 0,
34 KILL_PROCESS,
58ea275a 35 KILL_MIXED,
4819ff03
LP
36 KILL_NONE,
37 _KILL_MODE_MAX,
38 _KILL_MODE_INVALID = -1
39} KillMode;
40
41struct KillContext {
42 KillMode kill_mode;
43 int kill_signal;
44 bool send_sigkill;
82659fd7 45 bool send_sighup;
4819ff03
LP
46};
47
48typedef enum KillWho {
c74f17d9 49 /* Kill who is a property of an operation */
4819ff03
LP
50 KILL_MAIN,
51 KILL_CONTROL,
52 KILL_ALL,
53 _KILL_WHO_MAX,
54 _KILL_WHO_INVALID = -1
55} KillWho;
56
57void kill_context_init(KillContext *c);
58void kill_context_dump(KillContext *c, FILE *f, const char *prefix);
59
44a6b1b6
ZJS
60const char *kill_mode_to_string(KillMode k) _const_;
61KillMode kill_mode_from_string(const char *s) _pure_;
4819ff03 62
44a6b1b6
ZJS
63const char *kill_who_to_string(KillWho k) _const_;
64KillWho kill_who_from_string(const char *s) _pure_;