|
@@ -12,13 +12,19 @@
|
|
#ifdef __NR_umount /* Some newer archs only have umount2 */
|
|
#ifdef __NR_umount /* Some newer archs only have umount2 */
|
|
#include <sys/mount.h>
|
|
#include <sys/mount.h>
|
|
_syscall1(int, umount, const char *, specialfile);
|
|
_syscall1(int, umount, const char *, specialfile);
|
|
|
|
+
|
|
#elif defined __NR_umount2
|
|
#elif defined __NR_umount2
|
|
/* No umount syscall, but umount2 is available.... Try to
|
|
/* No umount syscall, but umount2 is available.... Try to
|
|
* emulate umount() using umount2() */
|
|
* emulate umount() using umount2() */
|
|
|
|
+
|
|
|
|
+#define __NR___syscall_umount2 __NR_umount2
|
|
|
|
+static inline _syscall2(int, umount2, const char *, special_file, int, flags);
|
|
|
|
+
|
|
int umount(const char *special_file, int flags)
|
|
int umount(const char *special_file, int flags)
|
|
{
|
|
{
|
|
- return _syscall2(int, umount2, const char *, special_file, int, flags);
|
|
|
|
|
|
+ return (__syscall_umount2(special_file, flags));
|
|
}
|
|
}
|
|
|
|
+
|
|
#else
|
|
#else
|
|
int umount(const char *special_file)
|
|
int umount(const char *special_file)
|
|
{
|
|
{
|
|
@@ -26,4 +32,3 @@ int umount(const char *special_file)
|
|
return -1;
|
|
return -1;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
-
|
|
|