chiark / gitweb /
journal: log user units for coredumps and show them in systemctl status
[elogind.git] / src / login / logind-action.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foologindactionhfoo
4 #define foologindactionhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2012 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU Lesser General Public License as published by
13   the Free Software Foundation; either version 2.1 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   Lesser General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 typedef enum HandleAction {
26         HANDLE_IGNORE,
27         HANDLE_POWEROFF,
28         HANDLE_REBOOT,
29         HANDLE_HALT,
30         HANDLE_KEXEC,
31         HANDLE_SUSPEND,
32         HANDLE_HIBERNATE,
33         HANDLE_HYBRID_SLEEP,
34         HANDLE_LOCK,
35         _HANDLE_ACTION_MAX,
36         _HANDLE_ACTION_INVALID = -1
37 } HandleAction;
38
39 #include "logind.h"
40 #include "logind-inhibit.h"
41
42 int manager_handle_action(
43                 Manager *m,
44                 InhibitWhat inhibit_key,
45                 HandleAction handle,
46                 bool ignore_inhibited,
47                 bool is_edge);
48
49 const char* handle_action_to_string(HandleAction h);
50 HandleAction handle_action_from_string(const char *s);
51
52 int config_parse_handle_action(const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
53
54 #endif