Fix minor oversight.

This commit is contained in:
mycroft 1995-10-10 18:27:25 +00:00
parent 55f15749ce
commit 28484180c7
6 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: locore.s,v 1.137 1995/10/10 01:26:38 mycroft Exp $ */
/* $NetBSD: locore.s,v 1.138 1995/10/10 18:27:25 mycroft Exp $ */
#undef DIAGNOSTIC
#define DIAGNOSTIC
@ -611,7 +611,7 @@ ENTRY(freebsd_sigcode)
# the copy at SIGF_SCP(%esp))
pushl %eax
pushl %eax # junk to fake return address
movl $FREEBSD_SYS_freebsd_sigreturn,%eax
movl $FREEBSD_SYS_sigreturn,%eax
int $0x80 # enter kernel with args on stack
movl $FREEBSD_SYS_exit,%eax
int $0x80 # exit if sigreturn fails

View File

@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
* created from NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp
*/
#define FREEBSD_SYS_syscall 0

View File

@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
* created from NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@ -239,7 +239,7 @@ int sys_fchflags __P((struct proc *, void *, register_t *));
int sys_sync __P((struct proc *, void *, register_t *));
int sys_kill __P((struct proc *, void *, register_t *));
int compat_43_freebsd_sys_stat __P((struct proc *, void *, register_t *));
int getppid __P((struct proc *, void *, register_t *));
int sys_getppid __P((struct proc *, void *, register_t *));
int compat_43_freebsd_sys_lstat __P((struct proc *, void *, register_t *));
int sys_dup __P((struct proc *, void *, register_t *));
int sys_pipe __P((struct proc *, void *, register_t *));

View File

@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
* created from NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp
*/
char *freebsd_syscallnames[] = {

View File

@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp
* created from NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp
*/
#include <sys/param.h>
@ -95,7 +95,7 @@ struct sysent freebsd_sysent[] = {
{ 2, s(struct compat_43_freebsd_sys_stat_args),
compat_43_freebsd_sys_stat }, /* 38 = ostat */
{ 0, 0,
getppid }, /* 39 = getppid */
sys_getppid }, /* 39 = getppid */
{ 2, s(struct compat_43_freebsd_sys_lstat_args),
compat_43_freebsd_sys_lstat }, /* 40 = olstat */
{ 1, s(struct sys_dup_args),

View File

@ -1,4 +1,4 @@
$NetBSD: syscalls.master,v 1.2 1995/10/10 01:34:37 mycroft Exp $
$NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp $
; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@ -99,7 +99,7 @@
37 NOARGS { int sys_kill(int pid, int signum); }
38 STD { int compat_43_freebsd_sys_stat(char *path, \
struct ostat *ub); } ostat
39 NOARGS { pid_t getppid(void); }
39 NOARGS { pid_t sys_getppid(void); }
40 STD { int compat_43_freebsd_sys_lstat(char *path, \
struct ostat *ub); } olstat
41 NOARGS { int sys_dup(u_int fd); }