Files
systemd/src/core/main.h
Lennart Poettering 898c9a6f97 pid1: split out crash handler logic into its own .c/.h file
This stuff is sufficiently different from the rest of main.c, let's move
it to its own .c/.h file, to make main.c a bit shorter.

No code changes, just some refactoring.
2022-03-10 13:45:14 +01:00

10 lines
198 B
C

/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include <stdbool.h>
extern bool arg_dump_core;
extern int arg_crash_chvt;
extern bool arg_crash_shell;
extern bool arg_crash_reboot;