Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazhvera committed Oct 25, 2024
1 parent cf592a7 commit 1803c0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/aws/io/event_loop.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
6 changes: 3 additions & 3 deletions include/aws/io/private/dispatch_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<scheduled_service_entry> 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;
};
Expand Down
2 changes: 1 addition & 1 deletion source/darwin/dispatch_queue_event_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1803c0f

Please sign in to comment.