Fix prototypes for {o|}{g|s}etrlimit. A recent change in the
Linuxulator caused this bug to trigger.
This commit is contained in:
parent
f6ccd4549a
commit
37929dbb05
@ -223,8 +223,8 @@
|
||||
141 COMPAT BSD { int getpeername(int fdes, caddr_t asa, int *alen); }
|
||||
142 COMPAT BSD { long gethostid(void); }
|
||||
143 COMPAT BSD { int sethostid(long hostid); }
|
||||
144 COMPAT BSD { int getrlimit(u_int which, struct ogetrlimit *rlp); }
|
||||
145 COMPAT BSD { int setrlimit(u_int which, struct ogetrlimit *rlp); }
|
||||
144 COMPAT BSD { int getrlimit(u_int which, struct orlimit *rlp); }
|
||||
145 COMPAT BSD { int setrlimit(u_int which, struct orlimit *rlp); }
|
||||
146 COMPAT BSD { int killpg(int pgid, int signum); }
|
||||
147 STD POSIX { int setsid(void); }
|
||||
148 STD BSD { int quotactl(char *path, int cmd, int uid, \
|
||||
@ -294,10 +294,10 @@
|
||||
192 STD POSIX { int fpathconf(int fd, int name); }
|
||||
193 UNIMPL NOHIDE nosys
|
||||
194 STD BSD { int getrlimit(u_int which, \
|
||||
struct orlimit *rlp); } \
|
||||
struct rlimit *rlp); } \
|
||||
getrlimit __getrlimit_args int
|
||||
195 STD BSD { int setrlimit(u_int which, \
|
||||
struct orlimit *rlp); } \
|
||||
struct rlimit *rlp); } \
|
||||
setrlimit __setrlimit_args int
|
||||
196 STD BSD { int getdirentries(int fd, char *buf, u_int count, \
|
||||
long *basep); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user