X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fservice.h;h=f01906cad47126fa73e1c3c5760868f72528dfb4;hp=3a033929fbae45526b1d80a5948ca906224c4960;hb=82526d72184e8fc3198decad1b2a8b895da6c0ba;hpb=03467c88fba6caeffce2a57a31ee2344e3d3ba31 diff --git a/src/service.h b/src/service.h index 3a033929f..f01906cad 100644 --- a/src/service.h +++ b/src/service.h @@ -33,7 +33,7 @@ typedef enum ServiceState { SERVICE_START, SERVICE_START_POST, SERVICE_RUNNING, - SERVICE_EXITED, /* Nothing is running anymore, but ValidNoProcess is true, ehnce this is OK */ + SERVICE_EXITED, /* Nothing is running anymore, but RemainAfterExit is true, ehnce this is OK */ SERVICE_RELOAD, SERVICE_STOP, /* No STOP_PRE state, instead just register multiple STOP executables */ SERVICE_STOP_SIGTERM, @@ -41,7 +41,7 @@ typedef enum ServiceState { SERVICE_STOP_POST, SERVICE_FINAL_SIGTERM, /* In case the STOP_POST executable hangs, we shoot that down, too */ SERVICE_FINAL_SIGKILL, - SERVICE_MAINTENANCE, + SERVICE_FAILED, SERVICE_AUTO_RESTART, _SERVICE_STATE_MAX, _SERVICE_STATE_INVALID = -1 @@ -109,7 +109,7 @@ struct Service { bool permissions_start_only; bool root_directory_start_only; - bool valid_no_process; + bool remain_after_exit; /* If we shut down, remember why */ bool failure:1;