summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/inline/rtems/score/isr.inl
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 /c/src/exec/score/inline/rtems/score/isr.inl
parentchanged version (diff)
downloadrtems-503dc05890731954e899d63a8baecabac573e22b.tar.bz2
switched from "STATIC INLINE" to "RTEMS_INLINE_ROUTINE"
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/inline/rtems/score/isr.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/exec/score/inline/rtems/score/isr.inl b/c/src/exec/score/inline/rtems/score/isr.inl
index 2dd41315bc..a944711ff0 100644
--- a/c/src/exec/score/inline/rtems/score/isr.inl
+++ b/c/src/exec/score/inline/rtems/score/isr.inl
@@ -29,7 +29,7 @@
* directives available to an interrupt service routine are restricted.
*/
-STATIC INLINE boolean _ISR_Is_in_progress( void )
+RTEMS_INLINE_ROUTINE boolean _ISR_Is_in_progress( void )
{
return (_ISR_Nest_level != 0);
}
@@ -44,7 +44,7 @@ STATIC INLINE boolean _ISR_Is_in_progress( void )
* for this processor and FALSE otherwise.
*/
-STATIC INLINE boolean _ISR_Is_vector_number_valid (
+RTEMS_INLINE_ROUTINE boolean _ISR_Is_vector_number_valid (
unsigned32 vector
)
{
@@ -62,7 +62,7 @@ STATIC INLINE boolean _ISR_Is_vector_number_valid (
* use interrupt service routine and FALSE otherwise.
*/
-STATIC INLINE boolean _ISR_Is_valid_user_handler (
+RTEMS_INLINE_ROUTINE boolean _ISR_Is_valid_user_handler (
void *handler
)
{