Searched refs:newpri (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4253 OSReturn os::set_native_priority(Thread* thread, int newpri) { argument
4257 osthread->set_native_priority(newpri);
4261 if (newpri == -criticalPrio) {
4263 newpri = criticalPrio;
4266 assert(newpri >= MinimumPriority && newpri <= MaximumPriority, "bad priority mapping");
4273 status = thr_setprio(thread->osthread()->thread_id(), newpri);
4281 newpri,
4286 newpri = java_MaxPriority_to_os_priority;
4289 newpri, myClas
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3807 OSReturn os::set_native_priority(Thread* thread, int newpri) { argument
3814 int ret = pthread_setprio(thread->osthread()->pthread_id(), newpri);
3823 sp.sched_priority = newpri;
3829 int ret = setpriority(PRIO_PROCESS, thread->osthread()->thread_id(), newpri);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3685 OSReturn os::set_native_priority(Thread* thread, int newpri) { argument
3688 int ret = setpriority(PRIO_PROCESS, thread->osthread()->thread_id(), newpri);

Completed in 276 milliseconds