diff --git a/include/aws/io/event_loop.h b/include/aws/io/event_loop.h index 8964cd648..1926d25b4 100644 --- a/include/aws/io/event_loop.h +++ b/include/aws/io/event_loop.h @@ -524,7 +524,7 @@ AWS_IO_API void aws_event_loop_group_release(struct aws_event_loop_group *el_group); /** - * Return the event loop style. + * Return the event loop style. */ AWS_IO_API enum aws_event_loop_style aws_event_loop_group_get_style(struct aws_event_loop_group *el_group); diff --git a/include/aws/io/private/dispatch_queue.h b/include/aws/io/private/dispatch_queue.h index 90ea6ba2f..a5d1bea8d 100644 --- a/include/aws/io/private/dispatch_queue.h +++ b/include/aws/io/private/dispatch_queue.h @@ -23,16 +23,16 @@ struct secure_transport_ctx { }; struct dispatch_scheduling_state { - /** + /** * Let's us skip processing an iteration task if one is already in the middle of executing - */ + */ bool is_executing_iteration; /** * List in sorted order by timestamp * * When we go to schedule a new iteration, we check here first to see - * if our scheduling attempt is redundant + * if our scheduling attempt is redundant */ struct aws_linked_list scheduled_services; }; diff --git a/source/darwin/dispatch_queue_event_loop.c b/source/darwin/dispatch_queue_event_loop.c index 421f9b1a7..95302d054 100644 --- a/source/darwin/dispatch_queue_event_loop.c +++ b/source/darwin/dispatch_queue_event_loop.c @@ -134,7 +134,7 @@ static struct aws_string *s_get_unique_dispatch_queue_id(struct aws_allocator *a } /* Setup a dispatch_queue with a scheduler. */ -static struct aws_event_loop *aws_event_loop_new_dispatch_queue_with_options( +struct aws_event_loop *aws_event_loop_new_dispatch_queue_with_options( struct aws_allocator *alloc, const struct aws_event_loop_options *options) { AWS_PRECONDITION(options);