mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-23 20:23:14 -05:00
* 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. From-SVN: r59840
35 lines
856 B
C++
35 lines
856 B
C++
/* 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;
|
|
}
|