Some obvious int to bool conversion in tracefile.c.
Should be no user visible changes after this commit.
bool
tracefile_target::has_all_memory ()
{
- return 1;
+ return true;
}
/* This is the implementation of target_ops method to_has_memory. */
bool
tracefile_target::has_memory ()
{
- return 1;
+ return true;
}
/* This is the implementation of target_ops method to_has_stack.
bool
tracefile_target::thread_alive (ptid_t ptid)
{
- return 1;
+ return true;
}
/* This is the implementation of target_ops method to_get_trace_status.