Regen for pmc_get_info, pmc_control.

This commit is contained in:
briggs 2002-08-07 04:54:29 +00:00
parent d436dc19f3
commit 5b1917a886
4 changed files with 37 additions and 15 deletions

View File

@ -1,14 +1,14 @@
/* $NetBSD: init_sysent.c,v 1.130 2002/07/04 23:34:29 thorpej Exp $ */
/* $NetBSD: init_sysent.c,v 1.131 2002/08/07 04:54:29 briggs Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
* created from NetBSD: syscalls.master,v 1.113 2002/08/07 04:52:53 briggs Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.130 2002/07/04 23:34:29 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.131 2002/08/07 04:54:29 briggs Exp $");
#include "opt_ktrace.h"
#include "opt_nfsserver.h"
@ -883,10 +883,10 @@ struct sysent sysent[] = {
sys_nosys }, /* 339 = unimplemented */
{ 5, s(struct sys___sigaction_sigtramp_args), 0,
sys___sigaction_sigtramp }, /* 340 = __sigaction_sigtramp */
{ 0, 0, 0,
sys_nosys }, /* 341 = filler */
{ 0, 0, 0,
sys_nosys }, /* 342 = filler */
{ 3, s(struct sys_pmc_get_info_args), 0,
sys_pmc_get_info }, /* 341 = pmc_get_info */
{ 3, s(struct sys_pmc_control_args), 0,
sys_pmc_control }, /* 342 = pmc_control */
{ 0, 0, 0,
sys_nosys }, /* 343 = filler */
{ 0, 0, 0,

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls.c,v 1.125 2002/07/04 23:34:29 thorpej Exp $ */
/* $NetBSD: syscalls.c,v 1.126 2002/08/07 04:54:29 briggs Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
* created from NetBSD: syscalls.master,v 1.113 2002/08/07 04:52:53 briggs Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.125 2002/07/04 23:34:29 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.126 2002/08/07 04:54:29 briggs Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"
@ -461,4 +461,6 @@ const char *const syscallnames[] = {
"#338 (unimplemented)", /* 338 = unimplemented */
"#339 (unimplemented)", /* 339 = unimplemented */
"__sigaction_sigtramp", /* 340 = __sigaction_sigtramp */
"pmc_get_info", /* 341 = pmc_get_info */
"pmc_control", /* 342 = pmc_control */
};

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscall.h,v 1.123 2002/07/04 23:34:28 thorpej Exp $ */
/* $NetBSD: syscall.h,v 1.124 2002/08/07 04:54:30 briggs Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
* created from NetBSD: syscalls.master,v 1.113 2002/08/07 04:52:53 briggs Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@ -720,5 +720,11 @@
/* syscall: "__sigaction_sigtramp" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" "void *" "int" */
#define SYS___sigaction_sigtramp 340
#define SYS_MAXSYSCALL 341
/* syscall: "pmc_get_info" ret: "int" args: "int" "int" "void *" */
#define SYS_pmc_get_info 341
/* syscall: "pmc_control" ret: "int" args: "int" "int" "void *" */
#define SYS_pmc_control 342
#define SYS_MAXSYSCALL 343
#define SYS_NSYSENT 512

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscallargs.h,v 1.105 2002/07/04 23:34:28 thorpej Exp $ */
/* $NetBSD: syscallargs.h,v 1.106 2002/08/07 04:54:30 briggs Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.112 2002/07/04 23:32:14 thorpej Exp
* created from NetBSD: syscalls.master,v 1.113 2002/08/07 04:52:53 briggs Exp
*/
#ifndef _SYS__SYSCALLARGS_H_
@ -1228,6 +1228,18 @@ struct sys___sigaction_sigtramp_args {
syscallarg(int) vers;
};
struct sys_pmc_get_info_args {
syscallarg(int) ctr;
syscallarg(int) op;
syscallarg(void *) args;
};
struct sys_pmc_control_args {
syscallarg(int) ctr;
syscallarg(int) op;
syscallarg(void *) args;
};
/*
* System call prototypes.
*/
@ -1538,4 +1550,6 @@ int sys_lchflags(struct proc *, void *, register_t *);
int sys_issetugid(struct proc *, void *, register_t *);
int sys_utrace(struct proc *, void *, register_t *);
int sys___sigaction_sigtramp(struct proc *, void *, register_t *);
int sys_pmc_get_info(struct proc *, void *, register_t *);
int sys_pmc_control(struct proc *, void *, register_t *);
#endif /* _SYS__SYSCALLARGS_H_ */