X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Ftarget.h;h=009ec17b0d74a89f85f952d0e11ab250a81467e9;hb=68889ea02f28bfd61f0b4b85aad4b0bf8826a947;hp=15003c654288737d884c275a44be385b136369fa;hpb=2653b8030722c85393974cd6c0ebcdbd1ae27c72;p=openocd.git diff --git a/src/target/target.h b/src/target/target.h index 15003c6542..009ec17b0d 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -172,8 +172,6 @@ enum target_event * - June/July/Aug 2008 * - Duane Ellis */ TARGET_EVENT_OLD_gdb_program_config, - TARGET_EVENT_OLD_pre_reset, - TARGET_EVENT_OLD_post_reset, TARGET_EVENT_OLD_pre_resume, /* allow GDB to do stuff before others handle the halted event, @@ -196,6 +194,7 @@ enum target_event TARGET_EVENT_RESET_START, TARGET_EVENT_RESET_ASSERT_PRE, + TARGET_EVENT_RESET_ASSERT, /* C code uses this instead of SRST */ TARGET_EVENT_RESET_ASSERT_POST, TARGET_EVENT_RESET_DEASSERT_PRE, TARGET_EVENT_RESET_DEASSERT_POST, @@ -226,7 +225,9 @@ struct target_event_action { struct Jim_Obj *body; int has_percent; struct target_event_action *next; - }; +}; + +bool target_has_event_action(struct target *target, enum target_event event); struct target_event_callback {