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>.
This commit is contained in:
Joel Sherrill
2001-08-30 18:27:52 +00:00
parent 770f6e99fb
commit ca739de315

View File

@@ -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