Skip to content

Commit

Permalink
remove debug changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazhvera committed Sep 17, 2024
1 parent bac8b07 commit 429bf26
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions source/event_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,10 +628,6 @@ void aws_event_loop_free_io_event_resources(struct aws_event_loop *event_loop, s
}

bool aws_event_loop_thread_is_callers_thread(struct aws_event_loop *event_loop) {
// DEBUG WIP return true for testing.
// printf("aws_event_loop_thread_is_callers_thread() event_loop=%p\n\n",
// (void *)event_loop);
return true;
AWS_ASSERT(event_loop->vtable && event_loop->vtable->is_on_callers_thread);
return event_loop->vtable->is_on_callers_thread(event_loop);
}
Expand Down

0 comments on commit 429bf26

Please sign in to comment.