diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-02-22 15:08:37 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-02-25 11:29:35 +0100 |
commit | 46bb1a41aebf82a1f7cc57d22cccea8eafc4de0d (patch) | |
tree | 665d0de84417d1d909e7562fa2a38a76fa47554d /guix/build | |
parent | 2b0026813bc18258dd6fbecd69723df0267994b7 (diff) |
syscalls: Define MS_RELATIME.
* guix/build/syscalls.scm (MS_RELATIME): New variable.
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/syscalls.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm index 85c1c45f81..b19a7a271b 100644 --- a/guix/build/syscalls.scm +++ b/guix/build/syscalls.scm @@ -43,9 +43,10 @@ MS_NOEXEC MS_REMOUNT MS_NOATIME + MS_STRICTATIME + MS_RELATIME MS_BIND MS_MOVE - MS_STRICTATIME MS_LAZYTIME MNT_FORCE MNT_DETACH @@ -466,6 +467,7 @@ the returned procedure is called." (define MS_NOATIME 1024) (define MS_BIND 4096) (define MS_MOVE 8192) +(define MS_RELATIME 2097152) (define MS_STRICTATIME 16777216) (define MS_LAZYTIME 33554432) |