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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.cpp885 // -- unassigned and on a thread's private omFreeList
942 for (mid = Self->omFreeList; mid != NULL; mid = mid->FreeNext) {
958 // 1: try to allocate from the thread's local omFreeList.
964 m = Self->omFreeList ;
966 Self->omFreeList = m->FreeNext ;
987 // Reprovision the thread's omFreeList.
1070 // Place "m" on the caller's private per-thread omFreeList.
1072 // monitors on a thread's omFreeList as the only time we'll call
1102 // FreeNext is used for both onInUseList and omFreeList, so clear old before setting new
1103 m->FreeNext = Self->omFreeList ;
[all...]
H A Dthread.hpp271 ObjectMonitor* omFreeList; member in class:Thread
272 int omFreeCount; // length of omFreeList
H A Dthread.cpp247 omFreeList = NULL ;
332 // Reclaim the objectmonitors from the omFreeList of the moribund thread.

Completed in 52 milliseconds