Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
crinit-sdefs.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __CRINIT_SDEFS_H__
7#define __CRINIT_SDEFS_H__
8
9#include <sys/types.h>
10
12#define CRINIT_ENV_NOTIFY_NAME "CRINIT_TASK_NAME"
13
14typedef unsigned long crinitTaskState_t;
15#define CRINIT_TASK_STATE_LOADED (0 << 0)
16#define CRINIT_TASK_STATE_STARTING (1 << 0)
17#define CRINIT_TASK_STATE_RUNNING (1 << 1)
18#define CRINIT_TASK_STATE_DONE (1 << 2)
19#define CRINIT_TASK_STATE_FAILED (1 << 3)
20#define CRINIT_TASK_STATE_NOTIFIED (1 << 4)
21
23typedef struct crinitTaskListEntry_t {
24 char *name;
25 pid_t pid;
27 struct timespec createTime;
28 struct timespec startTime;
29 struct timespec endTime;
30 gid_t gid;
31 uid_t uid;
32 char *username;
33 char *groupname;
35
41
48
49#endif /* __CRINIT_SDEFS_H__ */
crinitShutdownCmd_t
Definition crinit-sdefs.h:43
@ CRINIT_SHD_REBOOT
perform a graceful reboot
Definition crinit-sdefs.h:46
@ CRINIT_SHD_POWEROFF
perform a graceful shutdown
Definition crinit-sdefs.h:45
@ CRINIT_SHD_UNDEF
undefined/error value
Definition crinit-sdefs.h:44
unsigned long crinitTaskState_t
Type to store Task state bitmask.
Definition crinit-sdefs.h:14
Definition crinit-sdefs.h:23
struct timespec createTime
The time the task was created (loaded/parsed).
Definition crinit-sdefs.h:27
uid_t uid
UID of currently running process subordinate to the task.
Definition crinit-sdefs.h:31
struct timespec startTime
The time the task was last started (i.e. first command was spawned).
Definition crinit-sdefs.h:28
char * name
Task name.
Definition crinit-sdefs.h:24
char * groupname
Groupname of currently running process subordinate to the task.
Definition crinit-sdefs.h:33
struct timespec endTime
The time the task last ended (i.e. either failed or the last command is done).
Definition crinit-sdefs.h:29
gid_t gid
GID of currently running process subordinate to the task.
Definition crinit-sdefs.h:30
pid_t pid
PID of currently running process subordinate to the task, if any.
Definition crinit-sdefs.h:25
crinitTaskState_t state
Task state.
Definition crinit-sdefs.h:26
char * username
Username of currently running process subordinate to the task.
Definition crinit-sdefs.h:32
Definition crinit-sdefs.h:37
size_t numTasks
Number of elements in the tasks array.
Definition crinit-sdefs.h:38
crinitTaskListEntry_t * tasks
Array of task entries.
Definition crinit-sdefs.h:39