gdb: add some additional debug in mark_async_event_handler

Extend the existing debug printf call to include the previous state of
the async_event_handler object.
This commit is contained in:
Andrew Burgess 2022-10-04 11:59:26 +01:00
parent a13886e219
commit 07443de62b

View File

@ -293,8 +293,10 @@ create_async_event_handler (async_event_handler_func *proc,
void
mark_async_event_handler (async_event_handler *async_handler_ptr)
{
event_loop_debug_printf ("marking async event handler `%s`",
async_handler_ptr->name);
event_loop_debug_printf ("marking async event handler `%s` "
"(previous state was %d)",
async_handler_ptr->name,
async_handler_ptr->ready);
async_handler_ptr->ready = 1;
}