1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* Public domain. */ #ifndef _LINUX_KGDB_H #define _LINUX_KGDB_H #include <sys/types.h> #include <sys/systm.h> static inline int in_dbg_master(void) { #ifdef DDB return (db_active); #endif return (0); } #endif