diff options
author | netchild <netchild@FreeBSD.org> | 2006-03-20 18:53:26 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2006-03-20 18:53:26 +0000 |
commit | 868fb7958642a166bff76fe5a4dc65cb6c19ccd5 (patch) | |
tree | ba12d979f6e4e72f69a8afb1d8d523a0b39234d3 | |
parent | f6add5dd6c9322cbd6d96ddcb127da71079571d1 (diff) | |
download | FreeBSD-src-868fb7958642a166bff76fe5a4dc65cb6c19ccd5.zip FreeBSD-src-868fb7958642a166bff76fe5a4dc65cb6c19ccd5.tar.gz |
Fix the linuxolator on amd64 (cross-build).
-rw-r--r-- | sys/amd64/linux32/syscalls.master | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 529c530..4e2e36a 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -64,7 +64,8 @@ 16 AUE_NULL MSTD { int linux_lchown16(char *path, \ l_uid16_t uid, l_gid16_t gid); } 17 AUE_NULL UNIMPL break -18 AUE_NULL UNIMPL stat +18 AUE_NULL MSTD { int linux_stat(char *path, \ + struct linux_stat *up); } 19 AUE_NULL MSTD { int linux_lseek(l_uint fdes, l_off_t off, \ l_int whence); } 20 AUE_NULL MSTD { int linux_getpid(void); } @@ -156,7 +157,7 @@ struct l_old_select_argv *ptr); } 83 AUE_NULL MSTD { int linux_symlink(char *path, \ char *to); } -84 AUE_NULL MSTD { int linux_stat(char *path, struct l_stat *up); } +84 AUE_NULL MSTD { int linux_lstat(char *path, struct linux_lstat *up); } 85 AUE_NULL MSTD { int linux_readlink(char *name, \ char *buf, l_int count); } 86 AUE_NULL UNIMPL linux_uselib |