Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
crinitTask_t Struct Reference

#include <task.h>

Collaboration diagram for crinitTask_t:
Collaboration graph

Data Fields

char * name
 Name of the task, corresponds to NAME in the config file.
 
crinitTaskCmd_tcmds
 Dynamic array of commands, corresponds to COMMAND[N] in the config file.
 
size_t cmdsSize
 Number of commands in cmds array.
 
crinitTaskCmd_tstopCmds
 Dynamic array of commands, corresponds to STOP_COMMAND[N] in the config file.
 
size_t stopCmdsSize
 Number of commands in stopCmds array.
 
crinitEnvSet_t taskEnv
 Environment variables valid for each COMMAND in this task.
 
crinitEnvSet_t elosFilters
 Elos filter definitions valid for use in dependencies of this task.
 
crinitTaskDep_tdeps
 Dynamic array of dependencies, corresponds to DEPENDS in the config file.
 
size_t depsSize
 Number of dependencies in deps array.
 
crinitTaskPrv_tprv
 Dynamic array of provided features, corresponds to PROVIDES in the config file.
 
size_t prvSize
 Number of provided features in prv array.
 
crinitTaskOpts_t opts
 Task options.
 
crinitTaskState_t state
 Task state.
 
pid_t pid
 PID of currently running process subordinate to the task, if any.
 
crinitIoRedir_tredirs
 IO redirection descriptions.
 
size_t redirsSize
 Number of IO redirections.
 
int maxRetries
 
int failCount
 
struct timespec createTime
 The time the task was created (i.e. has been loaded and parsed).
 
struct timespec startTime
 The time the task last became 'running'.
 
struct timespec endTime
 The time the task last became 'done' or 'failed.
 
uid_t user
 The user id to run the task's commands with.
 
gid_t group
 The group id to run the task's commands with.
 
gid_t * supGroups
 Dynamic array of supplementary group IDs.
 
size_t supGroupsSize
 Number of supplementary group IDs in supGroups.
 
char * username
 The username to run the task's commands with.
 
char * groupname
 The groupname to run the task's commands with.
 

Detailed Description

Type to store a single task.

Field Documentation

◆ cmds

crinitTaskCmd_t* crinitTask_t::cmds

Dynamic array of commands, corresponds to COMMAND[N] in the config file.

◆ cmdsSize

size_t crinitTask_t::cmdsSize

Number of commands in cmds array.

◆ createTime

struct timespec crinitTask_t::createTime

The time the task was created (i.e. has been loaded and parsed).

◆ deps

crinitTaskDep_t* crinitTask_t::deps

Dynamic array of dependencies, corresponds to DEPENDS in the config file.

◆ depsSize

size_t crinitTask_t::depsSize

Number of dependencies in deps array.

◆ elosFilters

crinitEnvSet_t crinitTask_t::elosFilters

Elos filter definitions valid for use in dependencies of this task.

◆ endTime

struct timespec crinitTask_t::endTime

The time the task last became 'done' or 'failed.

◆ failCount

int crinitTask_t::failCount

Counts consecutive respawns after failure (see crinitTaskOpts_t::maxRetries). Resets on a successful completion (i.e. all COMMANDs in the task have returned 0).

◆ group

gid_t crinitTask_t::group

The group id to run the task's commands with.

◆ groupname

char* crinitTask_t::groupname

The groupname to run the task's commands with.

◆ maxRetries

int crinitTask_t::maxRetries

If crinitTask_t::opts includes CRINIT_TASK_OPT_RESPAWN, this variable specifies a maximum consecutive number of respawns after failure (default: -1 for infinite).

◆ name

char* crinitTask_t::name

Name of the task, corresponds to NAME in the config file.

◆ opts

crinitTaskOpts_t crinitTask_t::opts

Task options.

◆ pid

pid_t crinitTask_t::pid

PID of currently running process subordinate to the task, if any.

◆ prv

crinitTaskPrv_t* crinitTask_t::prv

Dynamic array of provided features, corresponds to PROVIDES in the config file.

◆ prvSize

size_t crinitTask_t::prvSize

Number of provided features in prv array.

◆ redirs

crinitIoRedir_t* crinitTask_t::redirs

IO redirection descriptions.

◆ redirsSize

size_t crinitTask_t::redirsSize

Number of IO redirections.

◆ startTime

struct timespec crinitTask_t::startTime

The time the task last became 'running'.

◆ state

crinitTaskState_t crinitTask_t::state

Task state.

◆ stopCmds

crinitTaskCmd_t* crinitTask_t::stopCmds

Dynamic array of commands, corresponds to STOP_COMMAND[N] in the config file.

◆ stopCmdsSize

size_t crinitTask_t::stopCmdsSize

Number of commands in stopCmds array.

◆ supGroups

gid_t* crinitTask_t::supGroups

Dynamic array of supplementary group IDs.

◆ supGroupsSize

size_t crinitTask_t::supGroupsSize

Number of supplementary group IDs in supGroups.

◆ taskEnv

crinitEnvSet_t crinitTask_t::taskEnv

Environment variables valid for each COMMAND in this task.

◆ user

uid_t crinitTask_t::user

The user id to run the task's commands with.

◆ username

char* crinitTask_t::username

The username to run the task's commands with.


The documentation for this struct was generated from the following file: