From b32ea28408abde2cdfbfcd062008a4aa91718cde Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Mon, 7 Nov 2005 07:40:56 +0000 Subject: [PATCH] - includes cleaned up --- Source/charon/event_queue.c | 1 + Source/charon/event_queue.h | 6 +++--- Source/charon/job_queue.c | 1 + Source/charon/job_queue.h | 3 +-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Source/charon/event_queue.c b/Source/charon/event_queue.c index 9bf1400217..703a3a8a69 100644 --- a/Source/charon/event_queue.c +++ b/Source/charon/event_queue.c @@ -29,6 +29,7 @@ #include "types.h" #include "event_queue.h" +#include "linked_list.h" diff --git a/Source/charon/event_queue.h b/Source/charon/event_queue.h index a90db33346..b63f0a1f9d 100644 --- a/Source/charon/event_queue.h +++ b/Source/charon/event_queue.h @@ -25,13 +25,13 @@ #include -#include "linked_list.h" -#include "job_queue.h" +#include "types.h" +#include "job.h" /** * @brief Event-Queue * - * Despite the event-queue is based on a linked_list_t + * Although the event-queue is based on a linked_list_t * all access functions are thread-save implemented */ typedef struct event_queue_s event_queue_t; diff --git a/Source/charon/job_queue.c b/Source/charon/job_queue.c index 902f92e502..a42a5827af 100644 --- a/Source/charon/job_queue.c +++ b/Source/charon/job_queue.c @@ -27,6 +27,7 @@ #include #include "job_queue.h" +#include "linked_list.h" /** * @brief Private Variables and Functions of job_queue class diff --git a/Source/charon/job_queue.h b/Source/charon/job_queue.h index 11e194e820..a2ddc25296 100644 --- a/Source/charon/job_queue.h +++ b/Source/charon/job_queue.h @@ -25,12 +25,11 @@ #include "types.h" #include "job.h" -#include "linked_list.h" /** * @brief Job-Queue * - * Despite the job-queue is based on a linked_list_t + * Although the job-queue is based on a linked_list_t * all access functions are thread-save implemented */ typedef struct job_queue_s job_queue_t;