1 /* $NetBSD: db_machdep.h,v 1.1 2005/12/29 15:20:08 tsutsui Exp $ */ 2 3 #include <mips/db_machdep.h> 4 5 #define DB_ELF_SYMBOLS 6 #define DB_ELFSIZE 32 7 #ifdef DDB 8 void __db_print_symbol(db_expr_t); 9 #define DB_PRINT_CALLER() \ 10 __db_print_symbol((db_expr_t)__builtin_return_address(0)) 11 #else 12 #define DB_PRINT_CALLER() ((void)0) 13 #endif 14