Module Name: src Committed By: matt Date: Sat Mar 1 05:28:23 UTC 2014
Modified Files: src/sys/arch/arm/include/arm32: db_machdep.h Log Message: Add db_show_tlb_cmd prototype To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/arch/arm/include/arm32/db_machdep.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/arm/include/arm32/db_machdep.h diff -u src/sys/arch/arm/include/arm32/db_machdep.h:1.7 src/sys/arch/arm/include/arm32/db_machdep.h:1.8 --- src/sys/arch/arm/include/arm32/db_machdep.h:1.7 Sat Jan 5 15:06:51 2013 +++ src/sys/arch/arm/include/arm32/db_machdep.h Sat Mar 1 05:28:23 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: db_machdep.h,v 1.7 2013/01/05 15:06:51 christos Exp $ */ +/* $NetBSD: db_machdep.h,v 1.8 2014/03/01 05:28:23 matt Exp $ */ #ifndef _ARM32_DB_MACHDEP_H_ #define _ARM32_DB_MACHDEP_H_ @@ -7,5 +7,8 @@ void db_show_frame_cmd(db_expr_t, bool, db_expr_t, const char *); void db_show_fault_cmd(db_expr_t, bool, db_expr_t, const char *); +#ifdef _KERNEL +void db_show_tlb_cmd(db_expr_t, bool, db_expr_t, const char *); +#endif #endif