X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fmount.h;h=a53423cc27bff97b171424e57dad47edc15798e7;hb=43a99a7afe3063eebc901452026b13360b69a7b5;hp=2edb75eb544c55a63cb2bf14bb63bc5f66776088;hpb=718db96199eb307751264e4163555662c9a389fa;p=elogind.git diff --git a/src/core/mount.h b/src/core/mount.h index 2edb75eb5..a53423cc2 100644 --- a/src/core/mount.h +++ b/src/core/mount.h @@ -54,12 +54,6 @@ typedef enum MountExecCommand { _MOUNT_EXEC_COMMAND_INVALID = -1 } MountExecCommand; -typedef struct MountParameters { - char *what; - char *options; - char *fstype; -} MountParameters; - typedef enum MountResult { MOUNT_SUCCESS, MOUNT_FAILURE_RESOURCES, @@ -71,6 +65,12 @@ typedef enum MountResult { _MOUNT_RESULT_INVALID = -1 } MountResult; +typedef struct MountParameters { + char *what; + char *options; + char *fstype; +} MountParameters; + struct Mount { Unit meta; @@ -101,6 +101,8 @@ struct Mount { KillContext kill_context; CGroupContext cgroup_context; + ExecRuntime *exec_runtime; + MountState state, deserialized_state; ExecCommand* control_command;