X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fmount.h;h=9318444249c33e5838dd0c01551eae35140ac212;hb=b8b5e648cacc8d73c55fdffbb3466ecd8146131a;hp=7c5d9d1f627063c5c3d8888e2024788065d41aaf;hpb=e2f3b44cfc8864bfea7c77ff4c383ce9b535f27e;p=elogind.git diff --git a/src/mount.h b/src/mount.h index 7c5d9d1f6..931844424 100644 --- a/src/mount.h +++ b/src/mount.h @@ -59,8 +59,19 @@ typedef struct MountParameters { int passno; } MountParameters; +typedef enum MountResult { + MOUNT_SUCCESS, + MOUNT_FAILURE_RESOURCES, + MOUNT_FAILURE_TIMEOUT, + MOUNT_FAILURE_EXIT_CODE, + MOUNT_FAILURE_SIGNAL, + MOUNT_FAILURE_CORE_DUMP, + _MOUNT_RESULT_MAX, + _MOUNT_RESULT_INVALID = -1 +} MountResult; + struct Mount { - Meta meta; + Unit meta; char *where; @@ -78,8 +89,8 @@ struct Mount { bool just_mounted:1; bool just_changed:1; - bool failure:1; - bool reload_failure:1; + MountResult result; + MountResult reload_result; mode_t directory_mode; @@ -107,4 +118,7 @@ MountState mount_state_from_string(const char *s); const char* mount_exec_command_to_string(MountExecCommand i); MountExecCommand mount_exec_command_from_string(const char *s); +const char* mount_result_to_string(MountResult i); +MountResult mount_result_from_string(const char *s); + #endif