summaryrefslogtreecommitdiffstats
path: root/lib/libc_r/include/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc_r/include/sched.h')
-rw-r--r--lib/libc_r/include/sched.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libc_r/include/sched.h b/lib/libc_r/include/sched.h
index 898d4ae6b16..81b91b2a682 100644
--- a/lib/libc_r/include/sched.h
+++ b/lib/libc_r/include/sched.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sched.h,v 1.5 2002/01/18 00:38:12 fgsch Exp $ */
+/* $OpenBSD: sched.h,v 1.6 2002/02/16 21:27:25 millert Exp $ */
/* sched.h: POSIX 1003.1b Process Scheduling header */
@@ -60,17 +60,17 @@ struct sched_param
#include <sys/cdefs.h>
__BEGIN_DECLS
-int sched_setparam __P((pid_t, const struct sched_param *));
-int sched_getparam __P((pid_t, struct sched_param *));
+int sched_setparam(pid_t, const struct sched_param *);
+int sched_getparam(pid_t, struct sched_param *);
-int sched_setscheduler __P((pid_t, int, const struct sched_param *));
-int sched_getscheduler __P((pid_t));
+int sched_setscheduler(pid_t, int, const struct sched_param *);
+int sched_getscheduler(pid_t);
-int sched_yield __P((void));
-int sched_get_priority_max __P((int));
-int sched_get_priority_min __P((int));
+int sched_yield(void);
+int sched_get_priority_max(int);
+int sched_get_priority_min(int);
struct timespec;
-int sched_rr_get_interval __P((pid_t, struct timespec *));
+int sched_rr_get_interval(pid_t, struct timespec *);
__END_DECLS
#endif /* KERNEL */