kdebug.h
来自「linux 内核源代码」· C头文件 代码 · 共 23 行
H
23 行
#ifndef _LINUX_KDEBUG_H#define _LINUX_KDEBUG_H#include <asm/kdebug.h>struct notifier_block;struct die_args { struct pt_regs *regs; const char *str; long err; int trapnr; int signr;};int register_die_notifier(struct notifier_block *nb);int unregister_die_notifier(struct notifier_block *nb);int notify_die(enum die_val val, const char *str, struct pt_regs *regs, long err, int trap, int sig);#endif /* _LINUX_KDEBUG_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?