Sort out the umount breakage introduced in the last 2 revisions.
Please note: When committing changes to this file, it is important to note that linux is not freebsd -- their system call numbers (and sometimes names) are different on different platforms. When in doubt (and you always need to be) check the arch-specific unistd.h and entry.S files in the linux kernel sources to see what the syscall numbers really are.
This commit is contained in:
parent
504d8fd040
commit
c9eeb59a01
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72741
@ -59,8 +59,8 @@
|
||||
18 UNIMPL LINUX
|
||||
19 STD LINUX { int linux_lseek(int fdes, long off, int whence); }
|
||||
20 NOPROTO LINUX { int getpid(void); }
|
||||
21 UNIMPL LINUX
|
||||
22 STD LINUX { int linux_umount(char *path); }
|
||||
21 UNIMPL LINUX osf1_mount
|
||||
22 STD LINUX { int linux_umount2(char *path, int flags); }
|
||||
23 NOPROTO LINUX { int setuid(uid_t uid); }
|
||||
24 NOPROTO LINUX { int getuid(void); }
|
||||
25 UNIMPL LINUX
|
||||
@ -90,7 +90,7 @@
|
||||
49 UNIMPL LINUX
|
||||
50 UNIMPL LINUX
|
||||
51 NOPROTO LINUX { int acct(char *path); }
|
||||
52 STD LINUX { int linux_umount2(char *path, int flags); }
|
||||
52 UNIMPL LINUX sigpending
|
||||
53 UNIMPL LINUX
|
||||
54 STD LINUX { int linux_ioctl(int fd, u_long cmd, u_long arg); }
|
||||
55 UNIMPL LINUX
|
||||
@ -405,7 +405,7 @@
|
||||
318 STD LINUX { int linux_sysinfo(void); }
|
||||
319 STD LINUX { int linux_sysctl(void); }
|
||||
320 STD LINUX { int linux_idle(void); }
|
||||
321 UNIMPL LINUX old_umount
|
||||
321 STD LINUX { int linux_umount(char *path); }
|
||||
322 NOPROTO LINUX { int swapon(char *name); }
|
||||
323 STD LINUX { int linux_times(struct linux_times_argv *buf); }
|
||||
324 STD LINUX { int linux_personality(int per); }
|
||||
|
Loading…
Reference in New Issue
Block a user