summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/inline/priority.inl
blob: 2a61181d46303f876192d878324da73838e1ef4c (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

#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