Commit 81550d0e by Tom Tromey Committed by Tom Tromey

Thread.java (stop): No longer synchronized.

	* java/lang/Thread.java (stop): No longer synchronized.
	(start): Likewise.

From-SVN: r48540
parent c1e14513
2002-01-04 Tom Tromey <tromey@redhat.com>
* java/lang/Thread.java (stop): No longer synchronized.
(start): Likewise.
2002-01-02 Tom Tromey <tromey@redhat.com> 2002-01-02 Tom Tromey <tromey@redhat.com>
* java/lang/ieeefp.h: Fix bug in my hand-application of previous * java/lang/ieeefp.h: Fix bug in my hand-application of previous
......
// Thread.java - Thread class. // Thread.java - Thread class.
/* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation /* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation
This file is part of libgcj. This file is part of libgcj.
...@@ -193,7 +193,7 @@ public class Thread implements Runnable ...@@ -193,7 +193,7 @@ public class Thread implements Runnable
public static native void sleep (long timeout, int nanos) public static native void sleep (long timeout, int nanos)
throws InterruptedException; throws InterruptedException;
public synchronized native void start (); public native void start ();
public final void stop () public final void stop ()
{ {
...@@ -202,7 +202,7 @@ public class Thread implements Runnable ...@@ -202,7 +202,7 @@ public class Thread implements Runnable
stop (null); stop (null);
} }
public final synchronized native void stop (Throwable e); public final native void stop (Throwable e);
public final native void suspend (); public final native void suspend ();
private final native void initialize_native (); private final native void initialize_native ();
......
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