summaryrefslogtreecommitdiff
path: root/util-linux/umount.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-08 18:55:24 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-08 18:55:24 +0000
commitbd22ed806782eec76929bcd2ec556717e79d24c7 (patch)
treee225367aaef198eacec8ed0b530d36a9d888d92f /util-linux/umount.c
parent877a71bbf0b8386add4631c08f7101259ad2dc07 (diff)
downloadbusybox-w32-bd22ed806782eec76929bcd2ec556717e79d24c7.tar.gz
busybox-w32-bd22ed806782eec76929bcd2ec556717e79d24c7.tar.bz2
busybox-w32-bd22ed806782eec76929bcd2ec556717e79d24c7.zip
Update files to reduce dependance on kernel version...
-Erik
Diffstat (limited to 'util-linux/umount.c')
-rw-r--r--util-linux/umount.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c
index 61f7f9028..d790d68ff 100644
--- a/util-linux/umount.c
+++ b/util-linux/umount.c
@@ -26,20 +26,20 @@
26#include <stdio.h> 26#include <stdio.h>
27#include <mntent.h> 27#include <mntent.h>
28#include <errno.h> 28#include <errno.h>
29#include <sys/mount.h>
29#include <linux/unistd.h> 30#include <linux/unistd.h>
30 31
31 32
32//#include <sys/mount.h> 33/* Include our own version of umount2 if we need it... */
33/* Include our own version of sys/mount.h, since libc5 doesn't 34#ifndef __NR_umount2
34 * know about umount2 */ 35#define __NR_umount2 52
35static _syscall1(int, umount, const char *, special_file);
36static _syscall2(int, umount2, const char *, special_file, int, flags);
37static _syscall5(int, mount, const char *, special_file, const char *, dir,
38 const char *, fstype, unsigned long int, rwflag, const void *, data);
39#define MNT_FORCE 1 36#define MNT_FORCE 1
40#define MS_MGC_VAL 0xc0ed0000 /* Magic flag number to indicate "new" flags */ 37#define MS_MGC_VAL 0xc0ed0000 /* Magic number indicatng "new" flags */
41#define MS_REMOUNT 32 /* Alter flags of a mounted FS. */ 38#define MS_REMOUNT 32 /* Alter flags of a mounted FS. */
42#define MS_RDONLY 1 /* Mount read-only. */ 39#define MS_RDONLY 1 /* Mount read-only. */
40
41#endif
42static _syscall2(int, umount2, const char *, special_file, int, flags);
43 43
44 44
45static const char umount_usage[] = 45static const char umount_usage[] =