diff options
Diffstat (limited to 'Source/charon')
-rw-r--r-- | Source/charon/event_queue.c | 1 | ||||
-rw-r--r-- | Source/charon/event_queue.h | 6 | ||||
-rw-r--r-- | Source/charon/job_queue.c | 1 | ||||
-rw-r--r-- | 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 9bf140021..703a3a8a6 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 a90db3334..b63f0a1f9 100644 --- a/Source/charon/event_queue.h +++ b/Source/charon/event_queue.h @@ -25,13 +25,13 @@ #include <sys/time.h> -#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 902f92e50..a42a5827a 100644 --- a/Source/charon/job_queue.c +++ b/Source/charon/job_queue.c @@ -27,6 +27,7 @@ #include <pluto/defs.h> #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 11e194e82..a2ddc2529 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; |