diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
commit | 5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch) | |
tree | 4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/threads/scheduler.h | |
parent | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff) | |
download | strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2 strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz |
- typedefs changed
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 |