summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-30 18:27:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-30 18:27:52 +0000
commitca739de31543cc58be8bc66ba82309c75e8b137d (patch)
tree333b1afccac2197952164be2ce8cd1e694b495cc
parent2001-08-17 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-ca739de31543cc58be8bc66ba82309c75e8b137d.tar.bz2
2001-08-30 Joel Sherrill <joel@OARcorp.com>
* inline/rtems/rtems/attr.inl: Correct typo and use correct attribute RTEMS_SYSTEM_TASK. Reported by Chris Johns <ccj@acm.org>.
-rw-r--r--c/src/exec/rtems/inline/rtems/rtems/attr.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/rtems/inline/rtems/rtems/attr.inl b/c/src/exec/rtems/inline/rtems/rtems/attr.inl
index d35be0dca4..838dacd096 100644
--- a/c/src/exec/rtems/inline/rtems/rtems/attr.inl
+++ b/c/src/exec/rtems/inline/rtems/rtems/attr.inl
@@ -205,7 +205,7 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_system_task(
rtems_attribute attribute_set
)
{
- return ( attribute_set & RTEMS_PRIORITY_CEILING );
+ return ( attribute_set & RTEMS_SYSTEM_TASK );
}
#endif