summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/inline
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/inline')
-rw-r--r--cpukit/posix/inline/rtems/posix/cond.inl9
-rw-r--r--cpukit/posix/inline/rtems/posix/mqueue.inl27
-rw-r--r--cpukit/posix/inline/rtems/posix/mutex.inl9
-rw-r--r--cpukit/posix/inline/rtems/posix/pthread.inl12
-rw-r--r--cpukit/posix/inline/rtems/posix/semaphore.inl15
-rw-r--r--cpukit/posix/inline/rtems/posix/timer.inl12
6 files changed, 28 insertions, 56 deletions
diff --git a/cpukit/posix/inline/rtems/posix/cond.inl b/cpukit/posix/inline/rtems/posix/cond.inl
index cd6bd0c77e..3082a9167e 100644
--- a/cpukit/posix/inline/rtems/posix/cond.inl
+++ b/cpukit/posix/inline/rtems/posix/cond.inl
@@ -25,8 +25,7 @@
#include <pthread.h>
-/*PAGE
- *
+/*
* _POSIX_Condition_variables_Allocate
*/
@@ -37,8 +36,7 @@ RTEMS_INLINE_ROUTINE POSIX_Condition_variables_Control
_Objects_Allocate( &_POSIX_Condition_variables_Information );
}
-/*PAGE
- *
+/*
* _POSIX_Condition_variables_Free
*/
@@ -52,8 +50,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Condition_variables_Free (
);
}
-/*PAGE
- *
+/*
* _POSIX_Condition_variables_Is_null
*/
diff --git a/cpukit/posix/inline/rtems/posix/mqueue.inl b/cpukit/posix/inline/rtems/posix/mqueue.inl
index 5d7399591a..cd0dd8b230 100644
--- a/cpukit/posix/inline/rtems/posix/mqueue.inl
+++ b/cpukit/posix/inline/rtems/posix/mqueue.inl
@@ -23,8 +23,7 @@
#ifndef _RTEMS_POSIX_MQUEUE_INL
#define _RTEMS_POSIX_MQUEUE_INL
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Allocate
*/
@@ -35,8 +34,7 @@ RTEMS_INLINE_ROUTINE
_Objects_Allocate( &_POSIX_Message_queue_Information );
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Allocate_fd
*/
@@ -47,8 +45,7 @@ RTEMS_INLINE_ROUTINE POSIX_Message_queue_Control_fd *
_Objects_Allocate( &_POSIX_Message_queue_Information_fds );
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Free
*/
@@ -59,8 +56,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Message_queue_Free (
_Objects_Free( &_POSIX_Message_queue_Information, &the_mq->Object );
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Free_fd
*/
@@ -71,8 +67,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Message_queue_Free_fd (
_Objects_Free( &_POSIX_Message_queue_Information_fds, &the_mq_fd->Object );
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Namespace_remove
*/
@@ -84,8 +79,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Message_queue_Namespace_remove (
&_POSIX_Message_queue_Information, &the_mq->Object );
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Get
*/
@@ -98,8 +92,7 @@ RTEMS_INLINE_ROUTINE POSIX_Message_queue_Control *_POSIX_Message_queue_Get (
_Objects_Get( &_POSIX_Message_queue_Information, id, location );
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Get_fd
*/
@@ -115,8 +108,7 @@ RTEMS_INLINE_ROUTINE POSIX_Message_queue_Control_fd *_POSIX_Message_queue_Get_fd
);
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Is_null
*/
@@ -127,8 +119,7 @@ RTEMS_INLINE_ROUTINE bool _POSIX_Message_queue_Is_null (
return !the_mq;
}
-/*PAGE
- *
+/*
* _POSIX_Message_queue_Priority_to_core
*/
diff --git a/cpukit/posix/inline/rtems/posix/mutex.inl b/cpukit/posix/inline/rtems/posix/mutex.inl
index cf3bc33443..4454350aa7 100644
--- a/cpukit/posix/inline/rtems/posix/mutex.inl
+++ b/cpukit/posix/inline/rtems/posix/mutex.inl
@@ -22,8 +22,7 @@
#ifndef _RTEMS_POSIX_MUTEX_INL
#define _RTEMS_POSIX_MUTEX_INL
-/*PAGE
- *
+/*
* _POSIX_Mutex_Allocate
*/
@@ -32,8 +31,7 @@ RTEMS_INLINE_ROUTINE POSIX_Mutex_Control *_POSIX_Mutex_Allocate( void )
return (POSIX_Mutex_Control *) _Objects_Allocate( &_POSIX_Mutex_Information );
}
-/*PAGE
- *
+/*
* _POSIX_Mutex_Free
*/
@@ -44,8 +42,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Mutex_Free (
_Objects_Free( &_POSIX_Mutex_Information, &the_mutex->Object );
}
-/*PAGE
- *
+/*
* _POSIX_Mutex_Is_null
*/
diff --git a/cpukit/posix/inline/rtems/posix/pthread.inl b/cpukit/posix/inline/rtems/posix/pthread.inl
index 7173e7651d..b7e48786e4 100644
--- a/cpukit/posix/inline/rtems/posix/pthread.inl
+++ b/cpukit/posix/inline/rtems/posix/pthread.inl
@@ -23,8 +23,7 @@
#ifndef _RTEMS_POSIX_PTHREAD_INL
#define _RTEMS_POSIX_PTHREAD_INL
-/*PAGE
- *
+/*
* _POSIX_Threads_Allocate
*/
@@ -33,8 +32,7 @@ RTEMS_INLINE_ROUTINE Thread_Control *_POSIX_Threads_Allocate( void )
return (Thread_Control *) _Objects_Allocate( &_POSIX_Threads_Information );
}
-/*PAGE
- *
+/*
* _POSIX_Threads_Free
*/
@@ -45,8 +43,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Threads_Free (
_Objects_Free( &_POSIX_Threads_Information, &the_pthread->Object );
}
-/*PAGE
- *
+/*
* _POSIX_Threads_Get
*/
@@ -59,8 +56,7 @@ RTEMS_INLINE_ROUTINE Thread_Control *_POSIX_Threads_Get (
_Objects_Get( &_POSIX_Threads_Information, (Objects_Id)id, location );
}
-/*PAGE
- *
+/*
* _POSIX_Threads_Is_null
*/
diff --git a/cpukit/posix/inline/rtems/posix/semaphore.inl b/cpukit/posix/inline/rtems/posix/semaphore.inl
index cd1dcbb235..ae1cd3a1fe 100644
--- a/cpukit/posix/inline/rtems/posix/semaphore.inl
+++ b/cpukit/posix/inline/rtems/posix/semaphore.inl
@@ -23,8 +23,7 @@
#ifndef _RTEMS_POSIX_SEMAPHORE_INL
#define _RTEMS_POSIX_SEMAPHORE_INL
-/*PAGE
- *
+/*
* _POSIX_Semaphore_Allocate
*/
@@ -34,8 +33,7 @@ RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *_POSIX_Semaphore_Allocate( void )
_Objects_Allocate( &_POSIX_Semaphore_Information );
}
-/*PAGE
- *
+/*
* _POSIX_Semaphore_Free
*/
@@ -46,8 +44,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Semaphore_Free (
_Objects_Free( &_POSIX_Semaphore_Information, &the_semaphore->Object );
}
-/*PAGE
- *
+/*
* _POSIX_Semaphore_Namespace_remove
*/
@@ -61,8 +58,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Semaphore_Namespace_remove (
-/*PAGE
- *
+/*
* _POSIX_Semaphore_Get
*/
RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *_POSIX_Semaphore_Get (
@@ -74,8 +70,7 @@ RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *_POSIX_Semaphore_Get (
_Objects_Get( &_POSIX_Semaphore_Information, (Objects_Id)*id, location );
}
-/*PAGE
- *
+/*
* _POSIX_Semaphore_Is_null
*/
diff --git a/cpukit/posix/inline/rtems/posix/timer.inl b/cpukit/posix/inline/rtems/posix/timer.inl
index c210e4d25d..0b0bd93797 100644
--- a/cpukit/posix/inline/rtems/posix/timer.inl
+++ b/cpukit/posix/inline/rtems/posix/timer.inl
@@ -23,8 +23,7 @@
#ifndef _RTEMS_POSIX_TIMER_INL
#define _RTEMS_POSIX_TIMER_INL
-/*PAGE
- *
+/*
* _POSIX_Timer_Allocate
*
* DESCRIPTION:
@@ -38,8 +37,7 @@ RTEMS_INLINE_ROUTINE POSIX_Timer_Control *_POSIX_Timer_Allocate( void )
return (POSIX_Timer_Control *) _Objects_Allocate( &_POSIX_Timer_Information );
}
-/*PAGE
- *
+/*
* _POSIX_Timer_Free
*
* DESCRIPTION:
@@ -55,8 +53,7 @@ RTEMS_INLINE_ROUTINE void _POSIX_Timer_Free (
_Objects_Free( &_POSIX_Timer_Information, &the_timer->Object );
}
-/*PAGE
- *
+/*
* _POSIX_Timer_Get
*
* DESCRIPTION:
@@ -77,8 +74,7 @@ RTEMS_INLINE_ROUTINE POSIX_Timer_Control *_POSIX_Timer_Get (
_Objects_Get( &_POSIX_Timer_Information, (Objects_Id) id, location );
}
-/*PAGE
- *
+/*
* _POSIX_Timer_Is_null
*
* DESCRIPTION: