chiark / gitweb /
analyze: Cosmetic exit when the bootup is not yet complete when plotting.
[elogind.git] / src / mount.h
index 8d8c738b07937cd5786e389fe226802e190292f3..9318444249c33e5838dd0c01551eae35140ac212 100644 (file)
@@ -56,10 +56,22 @@ typedef struct MountParameters {
         char *what;
         char *options;
         char *fstype;
+        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;
 
@@ -77,7 +89,8 @@ struct Mount {
         bool just_mounted:1;
         bool just_changed:1;
 
-        bool failure:1;
+        MountResult result;
+        MountResult reload_result;
 
         mode_t directory_mode;
 
@@ -105,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