X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Fexit-status.h;h=d3b548fc96ad40df3a0cee43612ee658deb6e290;hp=813f1ce1b4a236a9e7fc4cc5b3bff77f928a36a4;hb=96342de68d0d6de71a062d984dafd2a0905ed9fe;hpb=8351ceaea9480d9c2979aa2ff0f4982cfdfef58d diff --git a/src/shared/exit-status.h b/src/shared/exit-status.h index 813f1ce1b..d3b548fc9 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. @@ -23,7 +22,7 @@ ***/ #include - +#include "set.h" typedef enum ExitStatus { /* EXIT_SUCCESS defined by libc */ /* EXIT_FAILURE defined by libc */ @@ -78,9 +77,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); -#endif +bool is_clean_exit(int code, int status, ExitStatusSet *success_status); +bool is_clean_exit_lsb(int code, int status, ExitStatusSet *success_status);