summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-30 18:28:46 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-30 18:28:46 +0000
commit760045f0f34ce2b801066128f340b2267d91b26d (patch)
treec82307bc75563e4ffc59fac3c3c1bdfa688b7770
parent2001-08-30 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-760045f0f34ce2b801066128f340b2267d91b26d.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>.
Diffstat (limited to '')
-rw-r--r--c/src/exec/rtems/ChangeLog5
-rw-r--r--c/src/exec/rtems/inline/rtems/rtems/attr.inl2
-rw-r--r--cpukit/rtems/ChangeLog5
-rw-r--r--cpukit/rtems/inline/rtems/rtems/attr.inl2
4 files changed, 12 insertions, 2 deletions
diff --git a/c/src/exec/rtems/ChangeLog b/c/src/exec/rtems/ChangeLog
index 0870729858..e9d9fcef30 100644
--- a/c/src/exec/rtems/ChangeLog
+++ b/c/src/exec/rtems/ChangeLog
@@ -1,3 +1,8 @@
+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>.
+
2001-08-16 Joel Sherrill <joel@OARcorp.com>
* src/msgqsubmit.c: Add a comment indicating that we do not have
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
diff --git a/cpukit/rtems/ChangeLog b/cpukit/rtems/ChangeLog
index 0870729858..e9d9fcef30 100644
--- a/cpukit/rtems/ChangeLog
+++ b/cpukit/rtems/ChangeLog
@@ -1,3 +1,8 @@
+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>.
+
2001-08-16 Joel Sherrill <joel@OARcorp.com>
* src/msgqsubmit.c: Add a comment indicating that we do not have
diff --git a/cpukit/rtems/inline/rtems/rtems/attr.inl b/cpukit/rtems/inline/rtems/rtems/attr.inl
index d35be0dca4..838dacd096 100644
--- a/cpukit/rtems/inline/rtems/rtems/attr.inl
+++ b/cpukit/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