unix/fiss

src/supervise/state_functions.c in master
Repositories | Summary | Log | Files | LICENSE

state_functions.c (522B) download


 1#include "defs.h"
 2
 3state_function_t state_functions[] = {
 4	[STATE_INACTIVE]          = {},
 5	[STATE_DEPENDENCY]        = state_dependency,
 6	[STATE_SETUP]             = state_setup,
 7	[STATE_STARTING]          = state_starting,
 8	[STATE_ACTIVE_FOREGROUND] = state_active_foreground,
 9	[STATE_ACTIVE_BACKGROUND] = state_active_background,
10	[STATE_ACTIVE_PID]        = state_active_pid,
11	[STATE_ACTIVE_DUMMY]      = state_active_dummy,
12	[STATE_STOPPING]          = state_stopping,
13	[STATE_FINISHING]         = state_finishing,
14};