#include <pthread.h>
#include <sys/types.h>
#include "libComAPI.h"
#include "ellLib.h"
#include "epicsEvent.h"
Go to the source code of this file.
Definition at line 115 of file osdThread.c.
117 #if defined(_POSIX_THREAD_PRIORITY_SCHEDULING) && _POSIX_THREAD_PRIORITY_SCHEDULING > 0 118 double maxPriority,minPriority,slope,oss;
124 slope = (maxPriority - minPriority)/100.0;
125 oss = (double)pthreadInfo->osiPriority * slope + minPriority;
LIBCOM_API pthread_t epicsThreadGetPosixThreadId |
( |
epicsThreadId |
id | ) |
|