Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Regen for pmc_get_info, pmc_control.
details: https://anonhg.NetBSD.org/src/rev/017c160a6351
branches: trunk
changeset: 534953:017c160a6351
user: briggs <briggs%NetBSD.org@localhost>
date: Wed Aug 07 04:54:29 2002 +0000
description:
Regen for pmc_get_info, pmc_control.
diffstat:
sys/kern/init_sysent.c | 14 +++++++-------
sys/kern/syscalls.c | 8 +++++---
sys/sys/syscall.h | 12 +++++++++---
sys/sys/syscallargs.h | 18 ++++++++++++++++--
4 files changed, 37 insertions(+), 15 deletions(-)
diffs (135 lines):
diff -r 78029cd2fea3 -r 017c160a6351 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c Wed Aug 07 04:53:18 2002 +0000
+++ b/sys/kern/init_sysent.c Wed Aug 07 04:54:29 2002 +0000
@@ -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 @@
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,
diff -r 78029cd2fea3 -r 017c160a6351 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c Wed Aug 07 04:53:18 2002 +0000
+++ b/sys/kern/syscalls.c Wed Aug 07 04:54:29 2002 +0000
@@ -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 @@
"#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 */
};
diff -r 78029cd2fea3 -r 017c160a6351 sys/sys/syscall.h
--- a/sys/sys/syscall.h Wed Aug 07 04:53:18 2002 +0000
+++ b/sys/sys/syscall.h Wed Aug 07 04:54:29 2002 +0000
@@ -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
diff -r 78029cd2fea3 -r 017c160a6351 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h Wed Aug 07 04:53:18 2002 +0000
+++ b/sys/sys/syscallargs.h Wed Aug 07 04:54:29 2002 +0000
@@ -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 @@
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_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_ */
Home |
Main Index |
Thread Index |
Old Index