summaryrefslogtreecommitdiff
path: root/libjava/java/util/natResourceBundle.cc
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-12-05 00:49:30 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-12-05 00:49:30 +0000
commit39b699fac23ca0b454a407fc2a44758f30ec5d5e (patch)
tree55c5e4e7a3fc1386a525f3b48aea94a0f0b26bef /libjava/java/util/natResourceBundle.cc
parent761158c0dcdb558badcc91e7de620ebd110be48a (diff)
downloadgcc-39b699fac23ca0b454a407fc2a44758f30ec5d5e.tar.gz
* Makefile.in: Rebuilt.
* Makefile.am (nat_source_files): Added natVMSecurityManager, natResourceBundle. * java/util/ResourceBundle.java (Security): Removed. (getCallingClassLoader): Now native. * java/util/natResourceBundle.cc: New file. * java/lang/natVMSecurityManager.cc: New file. * java/lang/VMSecurityManager.java (getClassContext): Now native. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59840 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/natResourceBundle.cc')
-rw-r--r--libjava/java/util/natResourceBundle.cc34
1 files changed, 34 insertions, 0 deletions
diff --git a/libjava/java/util/natResourceBundle.cc b/libjava/java/util/natResourceBundle.cc
new file mode 100644
index 00000000000..9d142e060ef
--- /dev/null
+++ b/libjava/java/util/natResourceBundle.cc
@@ -0,0 +1,34 @@
+/* Copyright (C) 2002 Free Software Foundation
+
+ This file is part of libgcj.
+
+This software is copyrighted work licensed under the terms of the
+Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
+details. */
+
+// Written by Tom Tromey <tromey@redhat.com>
+
+#include <config.h>
+
+#include <gcj/cni.h>
+#include <jvm.h>
+#include <java/util/ResourceBundle.h>
+#include <java/lang/SecurityManager.h>
+#include <java/lang/ClassLoader.h>
+#include <java/lang/Class.h>
+#include <gnu/gcj/runtime/StackTrace.h>
+
+java::lang::ClassLoader *
+java::util::ResourceBundle::getCallingClassLoader ()
+{
+ gnu::gcj::runtime::StackTrace *t = new gnu::gcj::runtime::StackTrace(6);
+ if (! t)
+ return NULL;
+ for (int i = 3; i < 6; ++i)
+ {
+ jclass klass = t->classAt(i);
+ if (klass != NULL)
+ return klass->getClassLoaderInternal();
+ }
+ return NULL;
+}