Changeset 4da078a8 in rtems
- Timestamp:
- 06/14/16 15:01:52 (7 years ago)
- Branches:
- 5, master
- Children:
- 4dc5450
- Parents:
- 2df7fcf
- git-author:
- Sebastian Huber <sebastian.huber@…> (06/14/16 15:01:52)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/22/16 12:00:27)
- Location:
- cpukit/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/posix/include/rtems/posix/threadsup.h
r2df7fcf r4da078a8 53 53 struct sched_param schedparam; 54 54 /** 55 * This is the high priority to execute at when using the sporadic56 * scheduler.57 */58 int ss_high_priority;59 /**60 55 * This is the timer which controls when the thread executes at 61 56 * high and low priority when using the sporadic scheduler. -
cpukit/posix/src/pthreadsetschedparam.c
r2df7fcf r4da078a8 101 101 new_priority = _POSIX_Priority_To_core( api->schedparam.sched_priority ); 102 102 break; 103 104 case SCHED_SPORADIC:105 api->ss_high_priority = api->schedparam.sched_priority;106 break;107 103 } 108 104
Note: See TracChangeset
for help on using the changeset viewer.