mount.h revision 7d54a03a877e9c3f3f3087401ac4ccc1e12c78ea
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
#pragma once
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "unit.h"
#include "kill.h"
#include "execute.h"
#include "cgroup.h"
typedef enum MountState {
MOUNT_MOUNTING, /* /bin/mount is running, but the mount is not done yet. */
MOUNT_MOUNTING_DONE, /* /bin/mount is running, and the mount is done. */
_MOUNT_STATE_INVALID = -1
} MountState;
typedef enum MountExecCommand {
typedef enum MountResult {
} MountResult;
typedef struct MountParameters {
char *what;
char *options;
char *fstype;
struct Mount {
char *where;
bool from_proc_self_mountinfo:1;
bool from_fragment:1;
/* Used while looking for mount points that vanished or got
bool is_mounted:1;
bool just_mounted:1;
bool just_changed:1;
bool sloppy_options;
unsigned n_retry_umount;
};
extern const UnitVTable mount_vtable;