From 6e4c8294fb696f2a7748c895233b00e1af4c5a3d Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Thu, 3 Nov 2005 17:26:49 +0000 Subject: [PATCH] - creating of default job_queue --- Source/charon/daemon.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Source/charon/daemon.c b/Source/charon/daemon.c index f7d677631..fbe5216fe 100644 --- a/Source/charon/daemon.c +++ b/Source/charon/daemon.c @@ -27,14 +27,21 @@ #include "types.h" #include "tester.h" +#include "job_queue.h" + /* output for test messages */ extern FILE * stderr; + +job_queue_t *job_queue; + int main() { FILE * test_output = stderr; + job_queue = job_queue_create(); + tester_t *tester = tester_create(test_output); tester->test_all(tester);