summaryrefslogtreecommitdiff
path: root/libjava/gnu
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-12 00:32:02 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-12 00:32:02 +0000
commit99f3bb19f4bbc8ed3e51b46b82648c8b1d488ade (patch)
tree4b0780cf6760ac599a3fc7e4eff1a8b9ea2cd352 /libjava/gnu
parent2cf02ef16f55d23c2246446eb1713c850e750321 (diff)
downloadgcc-99f3bb19f4bbc8ed3e51b46b82648c8b1d488ade.tar.gz
* gnu/gcj/runtime/FirstThread.java (Kcert, Kfile, Khttp, Kjar):
New static final fields. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38200 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/gnu')
-rw-r--r--libjava/gnu/gcj/runtime/FirstThread.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/libjava/gnu/gcj/runtime/FirstThread.java b/libjava/gnu/gcj/runtime/FirstThread.java
index 8cf477fad55..a928c9cdb59 100644
--- a/libjava/gnu/gcj/runtime/FirstThread.java
+++ b/libjava/gnu/gcj/runtime/FirstThread.java
@@ -1,6 +1,6 @@
// FirstThread.java - Implementation of very first thread.
-/* Copyright (C) 1998, 1999 Free Software Foundation
+/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
This file is part of libgcj.
@@ -74,4 +74,13 @@ final class FirstThread extends Thread
private Class klass;
private String klass_name;
private Object args;
+
+ // If the user links statically then we need to ensure that these
+ // classes are linked in. Otherwise bootstrapping fails. These
+ // classes are only referred to via Class.forName(), so we add an
+ // explicit mention of them here.
+ static final Class Kcert = java.security.cert.Certificate.class;
+ static final Class Kfile = gnu.gcj.protocol.file.Handler.class;
+ static final Class Khttp = gnu.gcj.protocol.http.Handler.class;
+ static final Class Kjar = gnu.gcj.protocol.jar.Handler.class;
}