summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/inline/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-07-03 14:20:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-07-03 14:20:03 +0000
commit503dc05890731954e899d63a8baecabac573e22b (patch)
treec93178f7485d46cb9c10865f9d3bcf33dc9df2f9 /cpukit/sapi/inline/rtems
parentchanged version (diff)
downloadrtems-503dc05890731954e899d63a8baecabac573e22b.tar.bz2
switched from "STATIC INLINE" to "RTEMS_INLINE_ROUTINE"
Diffstat (limited to 'cpukit/sapi/inline/rtems')
-rw-r--r--cpukit/sapi/inline/rtems/extension.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/sapi/inline/rtems/extension.inl b/cpukit/sapi/inline/rtems/extension.inl
index c7757ff280..9f43f1ad07 100644
--- a/cpukit/sapi/inline/rtems/extension.inl
+++ b/cpukit/sapi/inline/rtems/extension.inl
@@ -27,7 +27,7 @@
* the inactive chain of free extension control blocks.
*/
-STATIC INLINE Extension_Control *_Extension_Allocate( void )
+RTEMS_INLINE_ROUTINE Extension_Control *_Extension_Allocate( void )
{
return (Extension_Control *) _Objects_Allocate( &_Extension_Information );
}
@@ -42,7 +42,7 @@ STATIC INLINE Extension_Control *_Extension_Allocate( void )
* inactive chain of free extension control blocks.
*/
-STATIC INLINE void _Extension_Free (
+RTEMS_INLINE_ROUTINE void _Extension_Free (
Extension_Control *the_extension
)
{
@@ -62,7 +62,7 @@ STATIC INLINE void _Extension_Free (
* to OBJECTS_ERROR and the returned value is undefined.
*/
-STATIC INLINE Extension_Control *_Extension_Get (
+RTEMS_INLINE_ROUTINE Extension_Control *_Extension_Get (
Objects_Id id,
Objects_Locations *location
)
@@ -80,7 +80,7 @@ STATIC INLINE Extension_Control *_Extension_Get (
* This function returns TRUE if the_extension is NULL and FALSE otherwise.
*/
-STATIC INLINE boolean _Extension_Is_null (
+RTEMS_INLINE_ROUTINE boolean _Extension_Is_null (
Extension_Control *the_extension
)
{