~ubuntu-branches/ubuntu/trusty/systemd/trusty

« back to all changes in this revision

Viewing changes to src/core/namespace.h

Tags: upstream-202
ImportĀ upstreamĀ versionĀ 202

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <stdbool.h>
25
25
 
26
 
int setup_namespace(
27
 
                char **writable,
28
 
                char **readable,
29
 
                char **inaccessible,
30
 
                bool private_tmp,
31
 
                unsigned long flags);
 
26
int setup_tmpdirs(char **tmp_dir, char **var_tmp_dir);
 
27
int setup_namespace(char **read_write_dirs,
 
28
                    char **read_only_dirs,
 
29
                    char **inaccessible_dirs,
 
30
                    char *tmp_dir,
 
31
                    char *var_tmp_dir,
 
32
                    bool private_tmp,
 
33
                    unsigned mount_flags);