]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Thread.java (stop): No longer synchronized.
authorTom Tromey <tromey@redhat.com>
Fri, 4 Jan 2002 20:38:20 +0000 (20:38 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Fri, 4 Jan 2002 20:38:20 +0000 (20:38 +0000)
* java/lang/Thread.java (stop): No longer synchronized.
(start): Likewise.

From-SVN: r48540

libjava/ChangeLog
libjava/java/lang/Thread.java

index a563ee6019310218ac2d1bcdcfc7ffab1f35ddf5..953fa26fb675b8766d8e15a5d2ab4d0d43f0f9c5 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        * java/lang/ieeefp.h: Fix bug in my hand-application of previous
index 542f47192fda4c3e95e383f364795056c7091fa1..92f74f62bbf7987117e3ec5cfc7b97be705131b1 100644 (file)
@@ -1,6 +1,6 @@
 // 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.
 
@@ -193,7 +193,7 @@ public class Thread implements Runnable
 
   public static native void sleep (long timeout, int nanos)
     throws InterruptedException;
-  public synchronized native void start ();
+  public native void start ();
 
   public final void stop ()
   {
@@ -202,7 +202,7 @@ public class Thread implements Runnable
     stop (null);
   }
 
-  public final synchronized native void stop (Throwable e);
+  public final native void stop (Throwable e);
   public final native void suspend ();
 
   private final native void initialize_native ();