Date: Mon, 1 Nov 1999 11:16:45 -0700 From: Patrick Tullmann To: Jay Lepreau Subject: Re: from Vishal ( regarding tests on Janos) In-Reply-To: <199911011813.LAA03712@mancos.cs.utah.edu> Jay Lepreau wrote: > Are there other patches? there's this one: I found a race condition in core/Thread.Java: this.tPool needs to be assigned before the NativeThread is started: diff -u -b -u -r1.7 Thread.Java --- Thread.Java 1999/09/07 21:20:28 1.7 +++ Thread.Java 1999/10/05 20:36:59 @@ -49,9 +49,9 @@ { super(); this.obj = null; + this.tPool = tPool; this.nThread = new NativeThread(this); this.nThread.start(); - this.tPool = tPool; } /** @@ -63,9 +63,9 @@ { super(); this.obj = null; + this.tPool = tPool; this.nThread = new NativeThread(this, r); this.nThread.start(); - this.tPool = tPool; } -Pat ----- ----- ---- --- --- -- - - - - - Pat Tullmann tullmann@cs.utah.edu This signature witticism intentionally left blank.