Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.16-rc2 18 lines 578 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _ASM_SCORE_BUG_H 3#define _ASM_SCORE_BUG_H 4 5#include <asm-generic/bug.h> 6 7struct pt_regs; 8extern void __die(const char *, struct pt_regs *, const char *, 9 const char *, unsigned long) __attribute__((noreturn)); 10extern void __die_if_kernel(const char *, struct pt_regs *, const char *, 11 const char *, unsigned long); 12 13#define die(msg, regs) \ 14 __die(msg, regs, __FILE__ ":", __func__, __LINE__) 15#define die_if_kernel(msg, regs) \ 16 __die_if_kernel(msg, regs, __FILE__ ":", __func__, __LINE__) 17 18#endif /* _ASM_SCORE_BUG_H */