summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/attr.h
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/include/rtems/rtems/attr.h
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/include/rtems/rtems/attr.h')
-rw-r--r--cpukit/rtems/include/rtems/rtems/attr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/attr.h b/cpukit/rtems/include/rtems/rtems/attr.h
index c5376540af..215b27f9a0 100644
--- a/cpukit/rtems/include/rtems/rtems/attr.h
+++ b/cpukit/rtems/include/rtems/rtems/attr.h
@@ -47,6 +47,9 @@ typedef unsigned32 rtems_attribute;
#define RTEMS_NO_PRIORITY_CEILING 0x00000000
#define RTEMS_PRIORITY_CEILING 0x00000040
+#define RTEMS_APPLICATION_TASK 0x00000000
+#define RTEMS_SYSTEM_TASK 0x00000080
+
#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
#define ATTRIBUTES_NOT_SUPPORTED 0
#else