diff options
author | peter <peter@FreeBSD.org> | 1999-12-29 05:07:58 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-12-29 05:07:58 +0000 |
commit | d53e4c1d809338e9b317d95bdded2f7f7a986556 (patch) | |
tree | 916004bdaa3cf47d2a92effe8c981e7d1ff5ccec /sys/posix4/sched.h | |
parent | 15b9bcb121e1f3735a2c98a11afdb52a03301d7e (diff) | |
download | FreeBSD-src-d53e4c1d809338e9b317d95bdded2f7f7a986556.zip FreeBSD-src-d53e4c1d809338e9b317d95bdded2f7f7a986556.tar.gz |
Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"
is an application space macro and the applications are supposed to be free
to use it as they please (but cannot). This is consistant with the other
BSD's who made this change quite some time ago. More commits to come.
Diffstat (limited to 'sys/posix4/sched.h')
-rw-r--r-- | sys/posix4/sched.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/posix4/sched.h b/sys/posix4/sched.h index 374c244..bdfc49b 100644 --- a/sys/posix4/sched.h +++ b/sys/posix4/sched.h @@ -35,11 +35,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * $FreeBSD$ */ #include <sys/types.h> /* For pid_t */ -#ifndef KERNEL +#ifndef _KERNEL #include <time.h> /* Per P1003.4 */ #endif @@ -54,7 +55,7 @@ struct sched_param int sched_priority; }; -#ifndef KERNEL +#ifndef _KERNEL #include <sys/cdefs.h> __BEGIN_DECLS @@ -70,6 +71,6 @@ int sched_get_priority_min __P((int)); int sched_rr_get_interval __P((pid_t, struct timespec *)); __END_DECLS -#endif /* KERNEL */ +#endif #endif /* _SCHED_H_ */ |