diff options
author | Tom Tromey <tromey@redhat.com> | 2003-08-28 22:17:37 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2003-08-28 22:17:37 +0000 |
commit | 91edd042ff3b7b58be7c20bf7483445f60c43210 (patch) | |
tree | a5d84d77e14c8eed9bc348be5e03ab4e6490a077 /libjava/include/jvm.h | |
parent | ff2865f2dde326797f4061c32c19fc75dcd4fec5 (diff) | |
download | gcc-91edd042ff3b7b58be7c20bf7483445f60c43210.zip gcc-91edd042ff3b7b58be7c20bf7483445f60c43210.tar.gz gcc-91edd042ff3b7b58be7c20bf7483445f60c43210.tar.bz2 |
Makefile.in: Rebuilt.
* Makefile.in: Rebuilt.
* Makefile.am (ordinary_java_source_files): Added new files.
* java/lang/Class.h (_Jv_sharedlib_register_hook): Declare as
friend.
* java/net/URLClassLoader.java (findClass): Don't use
findURLResource. Use loader's getClass method.
(URLLoader.getClass): New method.
(addURL): Handle `gcjlib' URLs.
(SoURLLoader): New class.
(SoResource): Likewise.
* gnu/gcj/protocol/gcjlib/Connection.java: New file.
* gnu/gcj/protocol/gcjlib/Handler.java: New file.
* include/jvm.h (struct _Jv_core_chain): Moved from natCore.cc.
(_Jv_RegisterCoreHook): Declare.
(_Jv_FindCore): Declare.
* gnu/gcj/runtime/SharedLibHelper.java: New file.
* gnu/gcj/runtime/natSharedLibLoader.cc (CoreHookFunc): New
typedef.
(core_hook): New function.
(struct SharedLibDummy) [saved_core]: New field.
(init): Set _Jv_RegisterCoreHook. Throw exception on failure.
(register_hook): Set protection domain and class loader on new
class.
(finalize): Free core chain.
* gnu/gcj/Core.java (Core): New constructor.
* gnu/gcj/runtime/SharedLibLoader.java: Rewrote to use
SharedLibHelper.
* gnu/gcj/natCore.cc (_Jv_RegisterResource): Indentation fixlet.
(_Jv_create_core): New function.
(create): Use it.
(default_register_resource): New function.
(_Jv_RegisterCoreHook): New global.
(_Jv_RegisterResource): Use it.
(core_chain_struct): Removed.
(_Jv_FindCore): New function.
(_Jv_FreeCoreChain): New function.
From-SVN: r70892
Diffstat (limited to 'libjava/include/jvm.h')
-rw-r--r-- | libjava/include/jvm.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h index 9af9dc7..a114e55 100644 --- a/libjava/include/jvm.h +++ b/libjava/include/jvm.h @@ -466,6 +466,22 @@ bool _Jv_VerifyClassName (_Jv_Utf8Const *name); bool _Jv_VerifyIdentifier (_Jv_Utf8Const *); bool _Jv_ClassNameSamePackage (_Jv_Utf8Const *name1, _Jv_Utf8Const *name2); +struct _Jv_core_chain +{ + int name_length; + const char *name; + int data_length; + const void *data; + + struct _Jv_core_chain *next; +}; + +// This is called when new core data is loaded. +extern void (*_Jv_RegisterCoreHook) (_Jv_core_chain *); + +_Jv_core_chain *_Jv_FindCore (_Jv_core_chain *node, jstring name); +void _Jv_FreeCoreChain (_Jv_core_chain *chain); + #ifdef ENABLE_JVMPI #include "jvmpi.h" |