Searched defs:native_prio (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.cpp89 int native_prio; local
91 native_prio = os::java_to_os_priority[CriticalPriority];
93 native_prio = os::java_to_os_priority[NearMaxPriority];
95 os::set_native_priority(this, native_prio);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp925 int native_prio = CompilerThreadPriority; local
926 if (native_prio == -1) {
928 native_prio = os::java_to_os_priority[CriticalPriority];
930 native_prio = os::java_to_os_priority[NearMaxPriority];
933 os::set_native_priority(compiler_thread, native_prio);

Completed in 28 milliseconds