From d10108c802b56535b03597e9fbb7603b0eeef9c0 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 29 Oct 2017 12:16:51 +0100 Subject: [PATCH] minor style fix --- src/util/scheduler.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/util/scheduler.c b/src/util/scheduler.c index a7b1d8e2a..b07c51811 100644 --- a/src/util/scheduler.c +++ b/src/util/scheduler.c @@ -73,7 +73,7 @@ * Argument to be passed from the driver to * #GNUNET_SCHEDULER_run_from_driver(). Contains the * scheduler's internal state. - */ + */ struct GNUNET_SCHEDULER_Handle { /** @@ -94,7 +94,7 @@ struct GNUNET_SCHEDULER_Handle * Driver we used for the event loop. */ const struct GNUNET_SCHEDULER_Driver *driver; - + }; @@ -127,7 +127,7 @@ struct GNUNET_SCHEDULER_Task * Handle to the scheduler's state. */ const struct GNUNET_SCHEDULER_Handle *sh; - + /** * Set of file descriptors this task is waiting * for for reading. Once ready, this is updated @@ -172,7 +172,7 @@ struct GNUNET_SCHEDULER_Task * Size of the @e fds array. */ unsigned int fds_len; - + /** * Why is the task ready? Set after task is added to ready queue. * Initially set to zero. All reasons that have already been @@ -589,9 +589,7 @@ static void dump_backtrace (struct GNUNET_SCHEDULER_Task *t) { #if EXECINFO - unsigned int i; - - for (i = 0; i < t->num_backtrace_strings; i++) + for (unsigned int i = 0; i < t->num_backtrace_strings; i++) LOG (GNUNET_ERROR_TYPE_DEBUG, "Task %p trace %u: %s\n", t, @@ -1849,7 +1847,7 @@ GNUNET_SCHEDULER_task_ready (struct GNUNET_SCHEDULER_Task *task, * * @param sh scheduler handle that was given to the `loop` * @return #GNUNET_OK if there are more tasks that are ready, - * and thus we would like to run more (yield to avoid + * and thus we would like to run more (yield to avoid * blocking other activities for too long) * #GNUNET_NO if we are done running tasks (yield to block) * #GNUNET_SYSERR on error @@ -1876,11 +1874,11 @@ GNUNET_SCHEDULER_run_from_driver (struct GNUNET_SCHEDULER_Handle *sh) pending_timeout_last = NULL; queue_ready_task (pos); } - + if (0 == ready_count) return GNUNET_NO; - /* find out which task priority level we are going to + /* find out which task priority level we are going to process this time */ max_priority_added = GNUNET_SCHEDULER_PRIORITY_KEEP; GNUNET_assert (NULL == ready_head[GNUNET_SCHEDULER_PRIORITY_KEEP]); -- 2.25.1