From 7934cc16733720b3eb61ca83e22c62a8ffd9c644 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 20 Aug 1998 19:16:48 +0000 Subject: Update. 1998-08-20 19:14 Ulrich Drepper * sysdeps/unix/sysv/linux/Makefile [subdirs=misc] (sysdeps_routines): Add umount and umount2. * sysdeps/unix/sysv/linux/syscalls.list: Remove umount. * sysdeps/unix/sysv/linux/umount.S: New file. * sysdeps/unix/sysv/linux/umount2.S: New file. * sysdeps/unix/sysv/linux/sys/mount.h: Declare umount2. Define MNT_FORCE. --- sysdeps/unix/sysv/linux/sys/mount.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sysdeps/unix/sysv/linux/sys/mount.h') diff --git a/sysdeps/unix/sysv/linux/sys/mount.h b/sysdeps/unix/sysv/linux/sys/mount.h index 589ecbc1c5..4b7154928c 100644 --- a/sysdeps/unix/sysv/linux/sys/mount.h +++ b/sysdeps/unix/sysv/linux/sys/mount.h @@ -82,6 +82,10 @@ enum #define BLKRAGET _IO(0x12, 99) /* Get current read ahead setting. */ +/* Possible value for FLAGS parameter of `umount2'. */ +#define MNT_FORCE /* Force unmounting. */ + + __BEGIN_DECLS /* Mount a filesystem. */ @@ -92,6 +96,9 @@ extern int mount __P ((__const char *__special_file, __const char *__dir, /* Unmount a filesystem. */ extern int umount __P ((__const char *__special_file)); +/* Unmount a filesystem. Forst unmounting if FALGS is set to MNT_FORCE. */ +extern int umount2 __P ((__const char *__special_file, int __flags)); + __END_DECLS #endif /* _SYS_MOUNT_H */ -- cgit 1.4.1