Fix various style(9) bugs:

o Unusual order of #ifndef _FOO_H_, followed by license.
o Missing tab in struct sched_param between type and member name.
o Space used, instead of tab, after #define.
o Reversed comment for #endif.
o Irregular comment block.
o Space used, instead of tab, to seperate return value type from
  function name.
o Unordered function prototypes.
This commit is contained in:
Mike Barcroft 2002-10-02 23:25:38 +00:00
parent 4162f2fe92
commit 0b024d3643

View File

@ -1,8 +1,3 @@
#ifndef _SCHED_H_
#define _SCHED_H_
/* sched.h: POSIX 1003.1b Process Scheduling header */
/*-
* Copyright (c) 1996, 1997
* HD Associates, Inc. All rights reserved.
@ -38,39 +33,42 @@
* $FreeBSD$
*/
/* sched.h: POSIX 1003.1b Process Scheduling header */
#ifndef _SCHED_H_
#define _SCHED_H_
#include <sys/types.h> /* For pid_t */
#ifndef _KERNEL
#include <time.h> /* Per P1003.4 */
#endif
/* Scheduling policies
/*
* Scheduling policies
*/
#define SCHED_FIFO 1
#define SCHED_OTHER 2
#define SCHED_RR 3
#define SCHED_FIFO 1
#define SCHED_OTHER 2
#define SCHED_RR 3
struct sched_param
{
int sched_priority;
struct sched_param {
int sched_priority;
};
#ifndef _KERNEL
#include <sys/cdefs.h>
__BEGIN_DECLS
int sched_setparam(pid_t, const struct sched_param *);
int sched_getparam(pid_t, struct sched_param *);
int sched_setscheduler(pid_t, int, const struct sched_param *);
int sched_getscheduler(pid_t);
int sched_yield(void);
int sched_get_priority_max(int);
int sched_get_priority_min(int);
int sched_rr_get_interval(pid_t, struct timespec *);
int sched_get_priority_max(int);
int sched_get_priority_min(int);
int sched_getparam(pid_t, struct sched_param *);
int sched_getscheduler(pid_t);
int sched_rr_get_interval(pid_t, struct timespec *);
int sched_setparam(pid_t, const struct sched_param *);
int sched_setscheduler(pid_t, int, const struct sched_param *);
int sched_yield(void);
__END_DECLS
#endif
#endif /* _SCHED_H_ */
#endif /* !_SCHED_H_ */