summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/inline/rtems/posix/priority.inl
blob: c3798ea3a8783783e8679ddd09f38800eda0ca2a (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
26
27
28
29
/*  
 *  $Id$
 */

#ifndef __RTEMS_POSIX_PRIORITY_inl
#define __RTEMS_POSIX_PRIORITY_inl

STATIC INLINE boolean _POSIX_Priority_Is_valid(
  int priority
)
{
  return (boolean) (priority >= 1 && priority <= 255);
}

STATIC INLINE Priority_Control _POSIX_Priority_To_core(
  int priority
)
{
  return (Priority_Control) (256 - priority);
}

STATIC INLINE int _POSIX_Priority_From_core(
  Priority_Control priority
)
{
  return 256 - priority;
}

#endif