summaryrefslogtreecommitdiff
path: root/src/core/emergency-action.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/emergency-action.h')
-rw-r--r--src/core/emergency-action.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/core/emergency-action.h b/src/core/emergency-action.h
deleted file mode 100644
index 8804b59752..0000000000
--- a/src/core/emergency-action.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#pragma once
-
-/***
- This file is part of systemd.
-
- Copyright 2014 Lennart Poettering
- Copyright 2012 Michael Olbrich
-
- 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 enum EmergencyAction {
- EMERGENCY_ACTION_NONE,
- EMERGENCY_ACTION_REBOOT,
- EMERGENCY_ACTION_REBOOT_FORCE,
- EMERGENCY_ACTION_REBOOT_IMMEDIATE,
- EMERGENCY_ACTION_POWEROFF,
- EMERGENCY_ACTION_POWEROFF_FORCE,
- EMERGENCY_ACTION_POWEROFF_IMMEDIATE,
- _EMERGENCY_ACTION_MAX,
- _EMERGENCY_ACTION_INVALID = -1
-} EmergencyAction;
-
-#include "macro.h"
-#include "manager.h"
-
-int emergency_action(Manager *m, EmergencyAction action, const char *reboot_arg, const char *reason);
-
-const char* emergency_action_to_string(EmergencyAction i) _const_;
-EmergencyAction emergency_action_from_string(const char *s) _pure_;