diff options
Diffstat (limited to 'sys/arch/arm64/include/db_machdep.h')
-rw-r--r-- | sys/arch/arm64/include/db_machdep.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/arm64/include/db_machdep.h b/sys/arch/arm64/include/db_machdep.h index 7f97a74eaf5..f8af409bea2 100644 --- a/sys/arch/arm64/include/db_machdep.h +++ b/sys/arch/arm64/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.1 2016/12/17 23:38:33 patrick Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.2 2018/01/30 15:46:12 kettenis Exp $ */ /* $NetBSD: db_machdep.h,v 1.5 2001/11/22 18:00:00 thorpej Exp $ */ /* @@ -89,4 +89,8 @@ void db_machine_init (void); void db_show_frame_cmd(db_expr_t, int, db_expr_t, char *); +#define DDB_STATE_NOT_RUNNING 0 +#define DDB_STATE_RUNNING 1 +#define DDB_STATE_EXITING 2 + #endif /* _MACHINE_DB_MACHDEP_H_ */ |