Searched defs:SchedParam (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/r3/darwin/
H A Dsched-darwin.cpp290 struct sched_param SchedParam = {0, {0,0,0,0} }; local
291 int err = pthread_getschedparam((pthread_t)pThread->Core.Key, &iSchedPolicy, &SchedParam);
302 SchedParam.sched_priority = iPriority;
303 err = pthread_setschedparam((pthread_t)pThread->Core.Key, iSchedPolicy, &SchedParam);
311 SchedParam.sched_priority = ++iPriority;
312 err = pthread_setschedparam((pthread_t)pThread->Core.Key, iSchedPolicy, &SchedParam);
318 SchedParam.sched_priority = --iPriority;
319 err = pthread_setschedparam((pthread_t)pThread->Core.Key, iSchedPolicy, &SchedParam);
326 rc, err, iSchedPolicy, SchedParam.sched_priority));
/vbox/src/VBox/Runtime/r3/linux/
H A Dsched-linux.cpp114 struct sched_param SchedParam; member in struct:__anon16694
282 sched_getparam(0 /* current process */, &pSave->SchedParam);
301 sched_setscheduler(0, pSave->iPolicy, &pSave->SchedParam);
302 sched_setparam(0, &pSave->SchedParam);
/vbox/src/VBox/Runtime/r3/posix/
H A Dsched-posix.cpp110 struct sched_param SchedParam; member in struct:__anon16706
344 sched_getparam(0 /* current process */, &pSave->SchedParam);
363 sched_setscheduler(0, pSave->iPolicy, &pSave->SchedParam);
364 sched_setparam(0, &pSave->SchedParam);
462 struct sched_param SchedParam = SavedPriority.PthreadSchedParam; local
463 SchedParam.sched_priority = i;
464 if (pthread_setschedparam(Self, SavedPriority.iPthreadPolicy, &SchedParam))
593 struct sched_param SchedParam = SavedPriority.PthreadSchedParam; local
594 SchedParam.sched_priority = pCfg->paTypes[i].iPriority
596 rc = pthread_setschedparam(Self, SavedPriority.iPthreadPolicy, &SchedParam);
753 struct sched_param SchedParam = {-9999999}; local
[all...]

Completed in 36 milliseconds