summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/macros/rtems/posix/priority.inl
blob: ea1ce8266923721db41132085ff9e0cdf249c651 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*  
 *  $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