Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
optfeat.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __OPTFEAT_H__
7#define __OPTFEAT_H__
8
19
35int crinitFeatureHook(const char *sysFeatName, crinitHookType_t type, void *data);
36
37#endif /*__OPTFEAT_H__ */
crinitHookType_t
Definition optfeat.h:12
@ CRINIT_HOOK_EXIT
Cleanup of the optional feature (remove temporary files).
Definition optfeat.h:14
@ CRINIT_HOOK_TASK_ADDED
Hook handles the addition of a new task.
Definition optfeat.h:17
@ CRINIT_HOOK_INIT
Initialization of the optional feature (eg. setup database).
Definition optfeat.h:13
@ CRINIT_HOOK_START
The optional feature is triggered by a specific event.
Definition optfeat.h:15
@ CRINIT_HOOK_STOP
The optional feature is removed due to another event happening.
Definition optfeat.h:16
int crinitFeatureHook(const char *sysFeatName, crinitHookType_t type, void *data)
Definition optfeat.c:67