X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fexit-status.h;h=d6bf84c69803c44efb06f138dbaaa58e0e0361df;hb=76cf10dab7a36653a159f0e87c46a13df494474f;hp=813f1ce1b4a236a9e7fc4cc5b3bff77f928a36a4;hpb=8351ceaea9480d9c2979aa2ff0f4982cfdfef58d;p=elogind.git diff --git a/src/shared/exit-status.h b/src/shared/exit-status.h index 813f1ce1b..d6bf84c69 100644 --- a/src/shared/exit-status.h +++ b/src/shared/exit-status.h @@ -1,7 +1,6 @@ /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ -#ifndef fooexitstatushfoo -#define fooexitstatushfoo +#pragma once /*** This file is part of systemd. @@ -24,6 +23,8 @@ #include +#include "set.h" + typedef enum ExitStatus { /* EXIT_SUCCESS defined by libc */ /* EXIT_FAILURE defined by libc */ @@ -63,12 +64,17 @@ typedef enum ExitStatus { EXIT_SETSID, /* 220 */ EXIT_CONFIRM, EXIT_STDERR, - EXIT_TCPWRAP, + _EXIT_RESERVED, /* used to be tcpwrap, don't reuse! */ EXIT_PAM, EXIT_NETWORK, EXIT_NAMESPACE, EXIT_NO_NEW_PRIVILEGES, - EXIT_SECCOMP + EXIT_SECCOMP, + EXIT_SELINUX_CONTEXT, + EXIT_PERSONALITY, /* 230 */ + EXIT_APPARMOR_PROFILE, + EXIT_ADDRESS_FAMILIES, + EXIT_RUNTIME_DIRECTORY } ExitStatus; typedef enum ExitStatusLevel { @@ -78,9 +84,12 @@ typedef enum ExitStatusLevel { EXIT_STATUS_FULL = EXIT_STATUS_LSB } ExitStatusLevel; -const char* exit_status_to_string(ExitStatus status, ExitStatusLevel level); +typedef struct ExitStatusSet { + Set *code; + Set *signal; +} ExitStatusSet; -bool is_clean_exit(int code, int status); -bool is_clean_exit_lsb(int code, int status); +const char* exit_status_to_string(ExitStatus status, ExitStatusLevel level) _const_; -#endif +bool is_clean_exit(int code, int status, ExitStatusSet *success_status); +bool is_clean_exit_lsb(int code, int status, ExitStatusSet *success_status);