X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fservice.h;h=0227321d99d1898df26e39842a58d379a45c79db;hb=308d72dc1e2106f94ae637e2ea510e8d466d2af1;hp=686cf4b0bdb772609aff921f04e40412bafb7751;hpb=70af4d17dafe81acc96f71f4ec06fbea7386bc38;p=elogind.git diff --git a/src/core/service.h b/src/core/service.h index 686cf4b0b..0227321d9 100644 --- a/src/core/service.h +++ b/src/core/service.h @@ -91,6 +91,15 @@ typedef enum NotifyAccess { _NOTIFY_ACCESS_INVALID = -1 } NotifyAccess; +typedef enum NotifyState { + NOTIFY_UNKNOWN, + NOTIFY_READY, + NOTIFY_RELOADING, + NOTIFY_STOPPING, + _NOTIFY_STATE_MAX, + _NOTIFY_STATE_INVALID = -1 +} NotifyState; + typedef enum ServiceResult { SERVICE_SUCCESS, SERVICE_FAILURE_RESOURCES, @@ -196,6 +205,7 @@ struct Service { PathSpec *pid_file_pathspec; NotifyAccess notify_access; + NotifyState notify_state; }; extern const UnitVTable service_vtable; @@ -219,6 +229,9 @@ ServiceExecCommand service_exec_command_from_string(const char *s) _pure_; const char* notify_access_to_string(NotifyAccess i) _const_; NotifyAccess notify_access_from_string(const char *s) _pure_; +const char* notify_state_to_string(NotifyState i) _const_; +NotifyState notify_state_from_string(const char *s) _pure_; + const char* service_result_to_string(ServiceResult i) _const_; ServiceResult service_result_from_string(const char *s) _pure_;