summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/macros/rtems/posix/priority.inl
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/macros/rtems/posix/priority.inl')
-rw-r--r--cpukit/posix/macros/rtems/posix/priority.inl29
1 files changed, 0 insertions, 29 deletions
diff --git a/cpukit/posix/macros/rtems/posix/priority.inl b/cpukit/posix/macros/rtems/posix/priority.inl
deleted file mode 100644
index 350db8b00e..0000000000
--- a/cpukit/posix/macros/rtems/posix/priority.inl
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * @file rtems/posix/priority.inl
- */
-
-/*
- * $Id$
- */
-
-#ifndef _RTEMS_POSIX_PRIORITY_INL
-#define _RTEMS_POSIX_PRIORITY_INL
-
-/*
- * 1003.1b-1993,2.2.2.80 definition of priority, p. 19
- *
- * "Numericallly higher values represent higher priorities."
- *
- * Thus, RTEMS Core has priorities run in the opposite sense of the POSIX API.
- */
-
-#define _POSIX_Priority_Is_valid( _priority ) \
- ((boolean) ((_priority) >= 1 && (_priority) <= 254))
-
-#define _POSIX_Priority_To_core( _priority ) \
- ((Priority_Control) (255 - (_priority)))
-
-#define _POSIX_Priority_From_core( _priority ) \
- (255 - (_priority))
-
-#endif