1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Do not map {s|g}etrlimit onto the FreeBSD syscalls. The arguments do not

match.

PR: kern/9591
Originator: John Plevyak <jplevyak@inktomi.com>
This commit is contained in:
Marcel Moolenaar 1999-08-11 13:29:48 +00:00
parent 81f4b03663
commit 10ef1b2aae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=49624
2 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
$Id: syscalls.master,v 1.15 1998/12/22 08:59:19 sos Exp $
$Id: syscalls.master,v 1.16 1998/12/30 20:58:28 sos Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
; System call name/number master file (or rather, slave, from LINUX).
@ -110,10 +110,10 @@
73 STD LINUX { int linux_sigpending(linux_sigset_t *mask); }
74 NOPROTO LINUX { int osethostname(char *hostname, \
u_int len);}
75 NOPROTO LINUX { int osetrlimit(u_int which, \
struct ogetrlimit *rlp); }
76 NOPROTO LINUX { int ogetrlimit(u_int which, \
struct ogetrlimit *rlp); }
75 STD LINUX { int linux_setrlimit(u_int resource, \
struct ogetrlimit *rlim); }
76 STD LINUX { int linux_getrlimit(u_int resource, \
struct ogetrlimit *rlim); }
77 NOPROTO LINUX { int getrusage(int who, struct rusage *rusage); }
78 NOPROTO LINUX { int gettimeofday(struct timeval *tp, \
struct timezone *tzp); }

View File

@ -1,4 +1,4 @@
$Id: syscalls.master,v 1.15 1998/12/22 08:59:19 sos Exp $
$Id: syscalls.master,v 1.16 1998/12/30 20:58:28 sos Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
; System call name/number master file (or rather, slave, from LINUX).
@ -110,10 +110,10 @@
73 STD LINUX { int linux_sigpending(linux_sigset_t *mask); }
74 NOPROTO LINUX { int osethostname(char *hostname, \
u_int len);}
75 NOPROTO LINUX { int osetrlimit(u_int which, \
struct ogetrlimit *rlp); }
76 NOPROTO LINUX { int ogetrlimit(u_int which, \
struct ogetrlimit *rlp); }
75 STD LINUX { int linux_setrlimit(u_int resource, \
struct ogetrlimit *rlim); }
76 STD LINUX { int linux_getrlimit(u_int resource, \
struct ogetrlimit *rlim); }
77 NOPROTO LINUX { int getrusage(int who, struct rusage *rusage); }
78 NOPROTO LINUX { int gettimeofday(struct timeval *tp, \
struct timezone *tzp); }