target: Use 'bool' for 'reset_halt'
Change-Id: I974a6360ea7467067511541ac212f2e9d3de7895 Signed-off-by: Marc Schink <dev@zapb.de> Reviewed-on: http://openocd.zylin.com/6262 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
parent
a9fb73a5b0
commit
c4dd883c9a
|
@ -5375,7 +5375,7 @@ static int jim_target_reset(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
|
|||
target_reset_examined(target);
|
||||
|
||||
/* determine if we should halt or not. */
|
||||
target->reset_halt = !!a;
|
||||
target->reset_halt = (a != 0);
|
||||
/* When this happens - all workareas are invalid. */
|
||||
target_free_all_working_areas_restore(target, 0);
|
||||
|
||||
|
|
|
@ -157,7 +157,7 @@ struct target {
|
|||
|
||||
struct target_event_action *event_action;
|
||||
|
||||
int reset_halt; /* attempt resetting the CPU into the halted mode? */
|
||||
bool reset_halt; /* attempt resetting the CPU into the halted mode? */
|
||||
target_addr_t working_area; /* working area (initialised RAM). Evaluated
|
||||
* upon first allocation from virtual/physical address. */
|
||||
bool working_area_virt_spec; /* virtual address specified? */
|
||||
|
|
Loading…
Reference in New Issue