aboutsummaryrefslogtreecommitdiffstats
path: root/src/libhydra/hydra.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libhydra/hydra.h')
-rw-r--r--src/libhydra/hydra.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libhydra/hydra.h b/src/libhydra/hydra.h
index 8670f3969..da515b103 100644
--- a/src/libhydra/hydra.h
+++ b/src/libhydra/hydra.h
@@ -22,6 +22,12 @@
* @defgroup hplugins plugins
* @ingroup libhydra
*
+ * @defgroup processing processing
+ * @ingroup libhydra
+ *
+ * @defgroup jobs jobs
+ * @ingroup processing
+ *
* @addtogroup libhydra
* @{
*/
@@ -32,6 +38,7 @@
typedef struct hydra_t hydra_t;
#include <attributes/attribute_manager.h>
+#include <processing/processor.h>
#include <library.h>
@@ -46,6 +53,11 @@ struct hydra_t {
attribute_manager_t *attributes;
/**
+ * process jobs using a thread pool
+ */
+ processor_t *processor;
+
+ /**
* name of the daemon that initialized the library
*/
const char *daemon;