Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
name event_loop_group cleanup thread
this butchered name is the best I could come up with <= 15 chars
  • Loading branch information
graebm committed Oct 28, 2022
commit ee42c97c7d130e684d9bd0ae541b6f5f842acfc4
1 change: 1 addition & 0 deletions source/event_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ static void s_aws_event_loop_group_shutdown_async(struct aws_event_loop_group *e

struct aws_thread_options thread_options = *aws_default_thread_options();
thread_options.join_strategy = AWS_TJS_MANAGED;
thread_options.name = aws_byte_cursor_from_c_str("EvntLoopCleanup"); /* 15 characters is max for Linux */

aws_thread_launch(&cleanup_thread, s_event_loop_destroy_async_thread_fn, el_group, &thread_options);
}
Expand Down