diff options
Diffstat (limited to 'src/core/mount-setup.h')
-rw-r--r-- | src/core/mount-setup.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/mount-setup.h b/src/core/mount-setup.h new file mode 100644 index 0000000..b4ca2cf --- /dev/null +++ b/src/core/mount-setup.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: LGPL-2.1+ */ +#pragma once + +#include <stdbool.h> + +int mount_setup_early(void); +int mount_setup(bool loaded_policy); + +int mount_cgroup_controllers(void); + +bool mount_point_is_api(const char *path); +bool mount_point_ignore(const char *path); |