2012-07-20 01:47:10 +04:00
# pragma once
/***
This file is part of systemd .
Copyright 2012 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation ; either version 2.1 of the License , or
( at your option ) any later version .
systemd is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Lesser General Public License for more details .
You should have received a copy of the GNU Lesser General Public License
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
typedef struct KillContext KillContext ;
# include <stdbool.h>
# include <stdio.h>
2013-05-03 06:51:50 +04:00
# include "macro.h"
2012-07-20 01:47:10 +04:00
typedef enum KillMode {
2012-07-20 02:00:04 +04:00
/* The kill mode is a property of a unit. */
2012-07-20 01:47:10 +04:00
KILL_CONTROL_GROUP = 0 ,
KILL_PROCESS ,
2014-01-29 16:38:55 +04:00
KILL_MIXED ,
2012-07-20 01:47:10 +04:00
KILL_NONE ,
_KILL_MODE_MAX ,
_KILL_MODE_INVALID = - 1
} KillMode ;
struct KillContext {
KillMode kill_mode ;
int kill_signal ;
bool send_sigkill ;
2013-07-30 03:54:59 +04:00
bool send_sighup ;
2012-07-20 01:47:10 +04:00
} ;
typedef enum KillWho {
2012-07-20 02:00:04 +04:00
/* Kill who is a property of an operation */
2012-07-20 01:47:10 +04:00
KILL_MAIN ,
KILL_CONTROL ,
KILL_ALL ,
2015-09-18 12:56:53 +03:00
KILL_MAIN_FAIL ,
KILL_CONTROL_FAIL ,
KILL_ALL_FAIL ,
2012-07-20 01:47:10 +04:00
_KILL_WHO_MAX ,
_KILL_WHO_INVALID = - 1
} KillWho ;
void kill_context_init ( KillContext * c ) ;
void kill_context_dump ( KillContext * c , FILE * f , const char * prefix ) ;
2013-05-03 06:51:50 +04:00
const char * kill_mode_to_string ( KillMode k ) _const_ ;
KillMode kill_mode_from_string ( const char * s ) _pure_ ;
2012-07-20 01:47:10 +04:00
2013-05-03 06:51:50 +04:00
const char * kill_who_to_string ( KillWho k ) _const_ ;
KillWho kill_who_from_string ( const char * s ) _pure_ ;