panic_notifier.h 296 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_PANIC_NOTIFIERS_H
  3. #define _LINUX_PANIC_NOTIFIERS_H
  4. #include <linux/notifier.h>
  5. #include <linux/types.h>
  6. extern struct atomic_notifier_head panic_notifier_list;
  7. extern bool crash_kexec_post_notifiers;
  8. #endif /* _LINUX_PANIC_NOTIFIERS_H */