Regen (breakpoint() implemented).

This commit is contained in:
bjh21 2002-01-27 15:28:22 +00:00
parent 8c36606f84
commit 70017578a1
4 changed files with 16 additions and 12 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscall.h,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
/* $NetBSD: linux_syscall.h,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp
* created from NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp
*/
/* syscall: "nosys" ret: "int" args: */
@ -538,6 +538,9 @@
/* syscall: "getfsuid32" ret: "int" args: */
#define LINUX_SYS_getfsuid32 216
/* syscall: "breakpoint" ret: "int" args: */
#define LINUX_SYS_breakpoint 257
/* syscall: "cacheflush" ret: "int" args: "uintptr_t" "intptr_t" */
#define LINUX_SYS_cacheflush 258

View File

@ -1,10 +1,10 @@
/* $NetBSD: linux_syscallargs.h,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
/* $NetBSD: linux_syscallargs.h,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp
* created from NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@ -706,5 +706,6 @@ int sys_setuid(struct proc *, void *, register_t *);
int sys_setgid(struct proc *, void *, register_t *);
int linux_sys_setfsuid(struct proc *, void *, register_t *);
int linux_sys_getfsuid(struct proc *, void *, register_t *);
int linux_sys_breakpoint(struct proc *, void *, register_t *);
int linux_sys_cacheflush(struct proc *, void *, register_t *);
#endif /* _LINUX_SYS__SYSCALLARGS_H_ */

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_syscalls.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
/* $NetBSD: linux_syscalls.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp
* created from NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@ -289,7 +289,7 @@ const char *const linux_syscallnames[] = {
"#254 (unimplemented)", /* 254 = unimplemented */
"#255 (unimplemented)", /* 255 = unimplemented */
"#256 (unimplemented)", /* 256 = unimplemented */
"#257 (unimplemented breakpoint)", /* 257 = unimplemented breakpoint */
"breakpoint", /* 257 = breakpoint */
"cacheflush", /* 258 = cacheflush */
"#259 (unimplemented usr26)", /* 259 = unimplemented usr26 */
"#260 (unimplemented usr32)", /* 260 = unimplemented usr32 */

View File

@ -1,14 +1,14 @@
/* $NetBSD: linux_sysent.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
/* $NetBSD: linux_sysent.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp
* created from NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $");
__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_43.h"
@ -548,7 +548,7 @@ struct sysent linux_sysent[] = {
{ 0, 0, 0,
linux_sys_nosys }, /* 256 = unimplemented */
{ 0, 0, 0,
linux_sys_nosys }, /* 257 = unimplemented breakpoint */
linux_sys_breakpoint }, /* 257 = breakpoint */
{ 2, s(struct linux_sys_cacheflush_args), 0,
linux_sys_cacheflush }, /* 258 = cacheflush */
{ 0, 0, 0,