summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/macros/rtems/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-21 16:54:17 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-21 16:54:17 +0000
commit7a035ebcc006d0195c660b71cc92609c99d635ba (patch)
tree6f69564a306d2f356a83f9711ff057d3abde2c10 /cpukit/rtems/macros/rtems/rtems
parentPatch from Eric Valette <valette@crf.canon.fr>: (diff)
downloadrtems-7a035ebcc006d0195c660b71cc92609c99d635ba.tar.bz2
Added system task attribute to allow one to create a task with "0" priority
via the user api.
Diffstat (limited to 'cpukit/rtems/macros/rtems/rtems')
-rw-r--r--cpukit/rtems/macros/rtems/rtems/attr.inl9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpukit/rtems/macros/rtems/rtems/attr.inl b/cpukit/rtems/macros/rtems/rtems/attr.inl
index 844ac4f012..290e7f7870 100644
--- a/cpukit/rtems/macros/rtems/rtems/attr.inl
+++ b/cpukit/rtems/macros/rtems/rtems/attr.inl
@@ -87,5 +87,14 @@
#define _Attributes_Is_priority_ceiling( _attribute_set ) \
( (_attribute_set) & RTEMS_PRIORITY_CEILING )
+/*PAGE
+ *
+ * _Attributes_Is_system_task
+ *
+ */
+
+#define _Attributes_Is_system_task( _attribute_set ) \
+ ( (_attribute_set) & RTEMS_SYSTEM_TASK )
+
#endif
/* end of include file */