aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/Thread.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/lang/Thread.java')
-rw-r--r--libjava/java/lang/Thread.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/lang/Thread.java b/libjava/java/lang/Thread.java
index 542f471..92f74f6 100644
--- a/libjava/java/lang/Thread.java
+++ b/libjava/java/lang/Thread.java
@@ -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 ();