Crinit -- Configurable Rootfs Init
elosio.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: MIT
6 #ifndef __ELOSIO_H__
7 #define __ELOSIO_H__
8 
9 #include <stdbool.h>
10 
11 struct crinitTask_t;
12 struct crinitTaskDB_t;
13 
14 #define CRINIT_ELOSIO_FEATURE_NAME "elos"
15 
24 int crinitElosioTaskAdded(struct crinitTask_t *task);
25 
37 int crinitElosioActivate(struct crinitTaskDB_t *taskDb, bool sl);
38 
39 #endif /* __ELOSIO_H__ */
int crinitElosioActivate(struct crinitTaskDB_t *taskDb, bool sl)
Definition: elosio.c:698
int crinitElosioTaskAdded(struct crinitTask_t *task)
Definition: elosio.c:454
Definition: taskdb.h:21
Definition: task.h:54