summaryrefslogtreecommitdiffstats
path: root/src/detect-engine-loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/detect-engine-loader.h')
-rw-r--r--src/detect-engine-loader.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/detect-engine-loader.h b/src/detect-engine-loader.h
index 7ffb8c8..f43ff9a 100644
--- a/src/detect-engine-loader.h
+++ b/src/detect-engine-loader.h
@@ -43,9 +43,14 @@ typedef struct DetectLoaderTask_ {
typedef struct DetectLoaderControl_ {
int id;
- int result; /* 0 for ok, error otherwise */
- SCMutex m;
- TAILQ_HEAD(, DetectLoaderTask_) task_list;
+ ThreadVars *tv; /**< loader threads threadvars - for waking them up */
+
+ /** struct to group members and mutex */
+ struct {
+ SCMutex m; /**< mutex protects result and task_list */
+ int result; /**< 0 for ok, error otherwise */
+ TAILQ_HEAD(, DetectLoaderTask_) task_list;
+ };
} DetectLoaderControl;
int DetectLoaderQueueTask(int loader_id, LoaderFunc Func, void *func_ctx, LoaderFreeFunc FreeFunc);