aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1998-11-11 13:05:29 +0000
committerPeter Wemm <peter@FreeBSD.org>1998-11-11 13:05:29 +0000
commita533143f791703657423b8ecc22ab115c94591ac (patch)
tree084b700806bf9df445f60e6ae52489677016039e
parentba031106b171be1a49c3cf273062facdc3b8bc0d (diff)
Notes
-rw-r--r--sys/sys/sysproto.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 7286f5038e17..71f949229aaa 100644
--- a/sys/sys/sysproto.h
+++ b/sys/sys/sysproto.h
@@ -2,7 +2,7 @@
* System call prototypes.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from Id: syscalls.master,v 1.53 1998/08/24 08:29:52 dfr Exp
+ * created from Id: syscalls.master,v 1.55 1998/11/11 12:45:14 peter Exp
*/
#ifndef _SYS_SYSPROTO_H_
@@ -888,6 +888,11 @@ struct sendfile_args {
off_t * sbytes; char sbytes_[PAD_(off_t *)];
int flags; char flags_[PAD_(int)];
};
+struct kldsym_args {
+ int fileid; char fileid_[PAD_(int)];
+ int cmd; char cmd_[PAD_(int)];
+ void * data; char data_[PAD_(void *)];
+};
int nosys __P((struct proc *, struct nosys_args *));
void exit __P((struct proc *, struct rexit_args *)) __dead2;
int fork __P((struct proc *, struct fork_args *));
@@ -1094,6 +1099,7 @@ int sched_get_priority_min __P((struct proc *, struct sched_get_priority_min_arg
int sched_rr_get_interval __P((struct proc *, struct sched_rr_get_interval_args *));
int utrace __P((struct proc *, struct utrace_args *));
int sendfile __P((struct proc *, struct sendfile_args *));
+int kldsym __P((struct proc *, struct kldsym_args *));
#ifdef COMPAT_43