Update, for linux_sys_readlink() removal.

This commit is contained in:
njoly 2007-11-16 12:56:50 +00:00
parent cb572617af
commit 601a0e5173
2 changed files with 4 additions and 25 deletions

View File

@ -1,4 +1,4 @@
$NetBSD: syscalls.master,v 1.19 2007/11/07 00:24:30 njoly Exp $
$NetBSD: syscalls.master,v 1.20 2007/11/16 12:56:50 njoly Exp $
; NetBSD i386 COMPAT_LINUX32 system call name/number "master" file.
; (See syscalls.conf to see what it is processed into.)
@ -173,7 +173,7 @@
const netbsd32_charp link); }
84 NOARGS { int compat_43_netbsd32_lstat43(const netbsd32_charp \
path, netbsd32_stat43p_t ub); }
85 STD { int linux32_sys_readlink(const netbsd32_charp name, \
85 NOARGS { int netbsd32_readlink(const netbsd32_charp name, \
netbsd32_charp buf, int count); }
86 UNIMPL uselib
87 STD { int linux32_sys_swapon(netbsd32_charp name); }

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux32_unistd.c,v 1.13 2007/11/07 00:24:31 njoly Exp $ */
/* $NetBSD: linux32_unistd.c,v 1.14 2007/11/16 12:56:50 njoly Exp $ */
/*-
* Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
@ -33,7 +33,7 @@
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux32_unistd.c,v 1.13 2007/11/07 00:24:31 njoly Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux32_unistd.c,v 1.14 2007/11/16 12:56:50 njoly Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -111,27 +111,6 @@ linux32_sys_llseek(l, v, retval)
return linux_sys_llseek(l, &ua, retval);
}
int
linux32_sys_readlink(l, v, retval)
struct lwp *l;
void *v;
register_t *retval;
{
struct linux32_sys_readlink_args /* {
syscallarg(const netbsd32_charp) name;
syscallarg(netbsd32_charp) buf;
syscallarg(int) count;
} */ *uap = v;
struct linux_sys_readlink_args ua;
NETBSD32TOP_UAP(name, const char);
NETBSD32TOP_UAP(buf, char)
NETBSD32TO64_UAP(count);
return linux_sys_readlink(l, &ua, retval);
}
int
linux32_sys_select(l, v, retval)
struct lwp *l;