summaryrefslogtreecommitdiffstats
path: root/sys/posix4
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-12-29 05:07:58 +0000
committerpeter <peter@FreeBSD.org>1999-12-29 05:07:58 +0000
commitd53e4c1d809338e9b317d95bdded2f7f7a986556 (patch)
tree916004bdaa3cf47d2a92effe8c981e7d1ff5ccec /sys/posix4
parent15b9bcb121e1f3735a2c98a11afdb52a03301d7e (diff)
downloadFreeBSD-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')
-rw-r--r--sys/posix4/aio.h6
-rw-r--r--sys/posix4/mqueue.h5
-rw-r--r--sys/posix4/sched.h7
-rw-r--r--sys/posix4/semaphore.h5
4 files changed, 13 insertions, 10 deletions
diff --git a/sys/posix4/aio.h b/sys/posix4/aio.h
index b96e9eb..32705f9 100644
--- a/sys/posix4/aio.h
+++ b/sys/posix4/aio.h
@@ -44,7 +44,7 @@
/* For struct sigevent:
*/
-#ifdef KERNEL
+#ifdef _KERNEL
#include <sys/signal.h>
#else
#include <signal.h>
@@ -87,7 +87,7 @@ struct aiocb {
int aio_lio_opcode; /* Operation to be performed */
};
-#ifndef KERNEL
+#ifndef _KERNEL
#include <sys/cdefs.h>
__BEGIN_DECLS
@@ -105,6 +105,6 @@ int aio_suspend __P((caio_listio_ctl[], int, const struct timespec *));
int aio_fsync __P((int, struct aiocb *));
__END_DECLS
-#endif /* KERNEL */
+#endif /* _KERNEL */
#endif /* _P1003_1B_AIO_H_ */
diff --git a/sys/posix4/mqueue.h b/sys/posix4/mqueue.h
index c59a4aa..c2fc38e 100644
--- a/sys/posix4/mqueue.h
+++ b/sys/posix4/mqueue.h
@@ -34,6 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
+ * $FreeBSD$
*/
#include <sys/_posix.h>
@@ -56,7 +57,7 @@ struct mq_attr {
long mq_curmsgs; /* number of messages currently queued */
};
-#ifndef KERNEL
+#ifndef _KERNEL
#include <sys/cdefs.h>
@@ -71,6 +72,6 @@ int mq_setattr __P((mqd_t, const struct mq_attr *, struct mq_attr *));
int mq_getattr __P((mqd_t, struct mq_attr *));
__END_DECLS
-#endif /* KERNEL */
+#endif
#endif /* _MQUEUE_H_ */
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_ */
diff --git a/sys/posix4/semaphore.h b/sys/posix4/semaphore.h
index f57a96f..e97abee 100644
--- a/sys/posix4/semaphore.h
+++ b/sys/posix4/semaphore.h
@@ -34,6 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
+ * $FreeBSD$
*/
#include <sys/_posix.h>
@@ -45,7 +46,7 @@
typedef int sem_t;
-#ifndef KERNEL
+#ifndef _KERNEL
#include <sys/cdefs.h>
__BEGIN_DECLS
@@ -60,6 +61,6 @@ int sem_post __P((sem_t *));
int sem_getvalue __P((sem_t *, int *));
__END_DECLS
-#endif /* KERNEL */
+#endif
#endif /* _SEMAPHORE_H_ */
OpenPOWER on IntegriCloud