Searched defs:priority_ptr (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3834 OSReturn os::get_native_priority(const Thread* const thread, int *priority_ptr) { argument
3836 *priority_ptr = java_to_os_priority[NormPriority];
3842 *priority_ptr = pthread_getprio(thread->osthread()->pthread_id());
3848 *priority_ptr = sp.sched_priority;
3850 *priority_ptr = getpriority(PRIO_PROCESS, thread->osthread()->thread_id());
3852 return (*priority_ptr != -1 || errno == 0 ? OS_OK : OS_ERR);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3692 OSReturn os::get_native_priority(const Thread* const thread, int *priority_ptr) { argument
3694 *priority_ptr = java_to_os_priority[NormPriority];
3699 *priority_ptr = getpriority(PRIO_PROCESS, thread->osthread()->thread_id());
3700 return (*priority_ptr != -1 || errno == 0 ? OS_OK : OS_ERR);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4297 OSReturn os::get_native_priority(const Thread* const thread, int *priority_ptr) { argument
4300 *priority_ptr = NormalPriority;
4307 *priority_ptr = p;
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3476 OSReturn os::get_native_priority(const Thread* const thread, int* priority_ptr) { argument
3478 *priority_ptr = java_to_os_priority[NormPriority];
3486 *priority_ptr = os_prio;

Completed in 82 milliseconds