* java/lang/Thread.java: Update comment.
authorBryce McKinlay <bryce@albatross.co.nz>
Fri, 5 Jan 2001 00:31:45 +0000 (00:31 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Fri, 5 Jan 2001 00:31:45 +0000 (00:31 +0000)
From-SVN: r38697

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

index 10976fb28b82944570d837a90f6b6ed851ddf5bf..b1ab099386f43d2b6331505c66efa03531a68fba 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-05  Bryce McKinlay  <bryce@albatross.co.nz>
+
+       * java/lang/Thread.java: Update comment.
+
 2001-01-03  Tom Tromey  <tromey@redhat.com>
 
        * java/awt/ScrollPane.java (setBlockIncrement): Throw error.
index ee2d98fa6113e0f840461c19f3b40796ad31b6d0..30fb4cd52a8a371e4bdb8a742b20f22183406466 100644 (file)
@@ -18,12 +18,9 @@ package java.lang;
 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
  * "The Java Language Specification", ISBN 0-201-63451-1
  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
- * Status:  Complete to version 1.1, with caveats
- * Known problems:
- *   No attempt was made to implement suspend/resume
- *     (this could be done in some cases)
- *   Various methods which assume a VM are likewise unimplemented
- *   We do implement stop() even though it is deprecated.
+ * Status:  Believed complete to version 1.3, with caveats. We do not 
+ *          implement the deprecated (and dangerous) stop, suspend, and resume
+ *          methods. Security implementation is not complete.
  */
 
 public class Thread implements Runnable