summaryrefslogtreecommitdiffstats
path: root/sys/sys/sysproto.h
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-05-08 14:08:49 +0000
committerpeter <peter@FreeBSD.org>1997-05-08 14:08:49 +0000
commitb1e845ef2c5be32c7aa555ad7f54accdf07b7f54 (patch)
tree0b37e194a9567a1c4c55ab2b5de8e777bb29f4fe /sys/sys/sysproto.h
parent7573a998948eca7a7383fd42a2a00e07f92439cc (diff)
downloadFreeBSD-src-b1e845ef2c5be32c7aa555ad7f54accdf07b7f54.zip
FreeBSD-src-b1e845ef2c5be32c7aa555ad7f54accdf07b7f54.tar.gz
regenerate
Diffstat (limited to 'sys/sys/sysproto.h')
-rw-r--r--sys/sys/sysproto.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index f278eb9..3836a7c 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.35 1997/03/31 14:52:50 peter Exp
+ * created from Id: syscalls.master,v 1.38 1997/05/08 14:07:11 peter Exp
*/
#ifndef _SYS_SYSPROTO_H_
@@ -717,6 +717,22 @@ struct shmget_args {
int size;
int shmflg;
};
+struct clock_gettime_args {
+ clockid_t clock_id;
+ struct timespec * tp;
+};
+struct clock_settime_args {
+ clockid_t clock_id;
+ const struct timespec * tp;
+};
+struct clock_getres_args {
+ clockid_t clock_id;
+ struct timespec * tp;
+};
+struct nanosleep_args {
+ const struct timespec * rqtp;
+ struct timespec * rmtp;
+};
struct minherit_args {
caddr_t addr;
size_t len;
@@ -933,6 +949,10 @@ int shmat __P((struct proc *, struct shmat_args *, int []));
int shmctl __P((struct proc *, struct shmctl_args *, int []));
int shmdt __P((struct proc *, struct shmdt_args *, int []));
int shmget __P((struct proc *, struct shmget_args *, int []));
+int clock_gettime __P((struct proc *, struct clock_gettime_args *, int []));
+int clock_settime __P((struct proc *, struct clock_settime_args *, int []));
+int clock_getres __P((struct proc *, struct clock_getres_args *, int []));
+int nanosleep __P((struct proc *, struct nanosleep_args *, int []));
int minherit __P((struct proc *, struct minherit_args *, int []));
int rfork __P((struct proc *, struct rfork_args *, int []));
int issetugid __P((struct proc *, struct issetugid_args *, int []));
OpenPOWER on IntegriCloud