[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/14: build: syscalls: Add unmount flags.
From: |
David Thompson |
Subject: |
04/14: build: syscalls: Add unmount flags. |
Date: |
Tue, 30 Jun 2015 01:54:06 +0000 |
davexunit pushed a commit to branch wip-container
in repository guix.
commit c01849294676d3ba01876678f3439c3a7e0d63a3
Author: David Thompson <address@hidden>
Date: Thu Jun 25 08:29:26 2015 -0400
build: syscalls: Add unmount flags.
* guix/build/syscalls.scm (MNT_FORCE, MNT_DETACH, MNT_EXPIRE)
(UMOUNT_NOFOLLOW): New variables.
---
guix/build/syscalls.scm | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index 37ded8d..61877bf 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -34,6 +34,10 @@
MS_BIND
MS_MOVE
MS_STRICTATIME
+ MNT_FORCE
+ MNT_DETACH
+ MNT_EXPIRE
+ UMOUNT_NOFOLLOW
restart-on-EINTR
mount
umount
@@ -159,6 +163,11 @@
(define MS_MOVE 8192)
(define MS_STRICTATIME 16777216)
+(define MNT_FORCE 1)
+(define MNT_DETACH 2)
+(define MNT_EXPIRE 4)
+(define UMOUNT_NOFOLLOW 8)
+
(define mount
(let* ((ptr (dynamic-func "mount" (dynamic-link)))
(proc (pointer->procedure int ptr `(* * * ,unsigned-long *))))
- branch wip-container created (now 53c036c), David Thompson, 2015/06/29
- 02/14: build: syscalls: Add setns syscall wrapper., David Thompson, 2015/06/29
- 04/14: build: syscalls: Add unmount flags.,
David Thompson <=
- 05/14: build: syscalls: Add mkdtemp!, David Thompson, 2015/06/29
- 01/14: build: syscalls: Add clone syscall wrapper., David Thompson, 2015/06/29
- 06/14: build: syscalls: Add pivot-root., David Thompson, 2015/06/29
- 03/14: build: syscalls: Add additional mount flags., David Thompson, 2015/06/29
- 07/14: utils: Add call-with-temporary-directory., David Thompson, 2015/06/29
- 09/14: gnu: system: Move <file-system-mapping> into (gnu system file-systems)., David Thompson, 2015/06/29
- 12/14: gnu: system: Add Linux container file systems., David Thompson, 2015/06/29
- 10/14: gnu: system: Move file-system->spec to (gnu system file-systems)., David Thompson, 2015/06/29
- 13/14: scripts: system: Add 'container' subcommand., David Thompson, 2015/06/29
- 14/14: scripts: environment: Add --container option., David Thompson, 2015/06/29