diff options
Diffstat (limited to 'src/libhydra/hydra.h')
-rw-r--r-- | src/libhydra/hydra.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libhydra/hydra.h b/src/libhydra/hydra.h index 2ae8bba76..29813fbfe 100644 --- a/src/libhydra/hydra.h +++ b/src/libhydra/hydra.h @@ -19,6 +19,9 @@ * @defgroup attributes attributes * @ingroup libhydra * + * @defgroup hkernel kernel + * @ingroup libhydra + * * @defgroup hplugins plugins * @ingroup libhydra * @@ -38,6 +41,7 @@ typedef struct hydra_t hydra_t; #include <attributes/attribute_manager.h> +#include <kernel/kernel_interface.h> #include <processing/processor.h> #include <processing/scheduler.h> @@ -54,6 +58,11 @@ struct hydra_t { attribute_manager_t *attributes; /** + * kernel interface to communicate with kernel + */ + kernel_interface_t *kernel_interface; + + /** * process jobs using a thread pool */ processor_t *processor; |