Commit 59407b83 by Rainer Orth Committed by Rainer Orth

natObject.cc (_Jv_ObjectCheckMonitor): Use _Jv_MutexCheckMonitor instead of…

natObject.cc (_Jv_ObjectCheckMonitor): Use _Jv_MutexCheckMonitor instead of accessing mutex.owner directly.

	* java/lang/natObject.cc (_Jv_ObjectCheckMonitor): Use
	_Jv_MutexCheckMonitor instead of accessing mutex.owner directly.

From-SVN: r72872
parent c7d91a94
2003-10-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* java/lang/natObject.cc (_Jv_ObjectCheckMonitor): Use
_Jv_MutexCheckMonitor instead of accessing mutex.owner directly.
2003-10-22 Tom Tromey <tromey@redhat.com>
PR libgcj/12416:
......
......@@ -1127,7 +1127,7 @@ retry:
else
{
heavy_lock* hl = find_heavy(addr, he);
not_mine = hl ? (hl->si.mutex.owner != self) : true;
not_mine = hl ? _Jv_MutexCheckMonitor(&hl->si.mutex) : true;
}
release_set(&(he -> address), address); // unlock hash entry
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment