diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-05 00:31:45 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-05 00:31:45 +0000 |
commit | 9fc7c53429a8275d0203899848eb1f7d925b76e7 (patch) | |
tree | d6d634e9ae8b0848e780c87759cd33670e0be269 /libjava/java/lang/Thread.java | |
parent | 8b3ab5d04e5fbbbf786ef7c03998cb0340066202 (diff) | |
download | ppe42-gcc-9fc7c53429a8275d0203899848eb1f7d925b76e7.tar.gz ppe42-gcc-9fc7c53429a8275d0203899848eb1f7d925b76e7.zip |
* java/lang/Thread.java: Update comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38697 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/lang/Thread.java')
-rw-r--r-- | libjava/java/lang/Thread.java | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libjava/java/lang/Thread.java b/libjava/java/lang/Thread.java index ee2d98fa611..30fb4cd52a8 100644 --- a/libjava/java/lang/Thread.java +++ b/libjava/java/lang/Thread.java @@ -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 |