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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dmutex.cpp1273 void Monitor::set_owner_implementation(Thread *new_owner) { argument
1284 if (new_owner != NULL) {
1287 assert(new_owner == Thread::current(), "Should I be doing this?");
1289 _owner = new_owner; // set the owner
1294 Monitor* locks = get_least_ranked_lock(new_owner->owned_locks());
1318 new_owner->print_owned_locks();
1324 this->_next = new_owner->_owned_locks;
1325 new_owner->_owned_locks = this;

Completed in 32 milliseconds