8210514: Obsolete SyncVerbose

Reviewed-by: coleenp, dcubed
This commit is contained in:
Mikael Vidstedt 2018-09-11 13:54:34 -07:00
parent e80b128db4
commit 9118c4c28b
7 changed files with 2 additions and 90 deletions

View file

@ -4736,7 +4736,6 @@ void Thread::SpinAcquire(volatile int * adr, const char * LockName) {
}
// Slow-path : We've encountered contention -- Spin/Yield/Block strategy.
TEVENT(SpinAcquire - ctx);
int ctr = 0;
int Yields = 0;
for (;;) {
@ -4831,7 +4830,6 @@ void Thread::muxAcquire(volatile intptr_t * Lock, const char * LockName) {
return;
}
TEVENT(muxAcquire - Contention);
ParkEvent * const Self = Thread::current()->_MuxEvent;
assert((intptr_t(Self) & LOCKBIT) == 0, "invariant");
for (;;) {
@ -4877,7 +4875,6 @@ void Thread::muxAcquireW(volatile intptr_t * Lock, ParkEvent * ev) {
return;
}
TEVENT(muxAcquire - Contention);
ParkEvent * ReleaseAfter = NULL;
if (ev == NULL) {
ev = ReleaseAfter = ParkEvent::Allocate(NULL);