This is Unofficial EPICS BASE Doxygen Site
osdThread.h File Reference

Go to the source code of this file.

Functions

int epicsThreadGetOssPriorityValue (unsigned int osiPriority)
 

Function Documentation

int epicsThreadGetOssPriorityValue ( unsigned int  osiPriority)

Definition at line 98 of file osdThread.c.

99 {
100  if (osiPriority > 99) {
101  return 100;
102  }
103  else {
104  return (199 - (signed int)osiPriority);
105  }
106 }