diff options
Diffstat (limited to 'Source/charon/threads/scheduler.h')
-rw-r--r-- | Source/charon/threads/scheduler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/threads/scheduler.h b/Source/charon/threads/scheduler.h index 8aa8fbbef..1bd9e62cd 100644 --- a/Source/charon/threads/scheduler.h +++ b/Source/charon/threads/scheduler.h @@ -25,15 +25,15 @@ #include <types.h> +typedef struct scheduler_t scheduler_t; + /** * @brief The scheduler, looks for timed events in event-queue and adds them * to the job-queue. * * Starts a thread which does the work, since event-queue is blocking */ -typedef struct scheduler_s scheduler_t; - -struct scheduler_s { +struct scheduler_t { /** * @brief Destroys a scheduler object |