2006-07-28 12:54:11 +02:00
|
|
|
// natVMAccessController.cc -- Native part of the VMAccessController class.
|
|
|
|
|
|
|
|
/* Copyright (C) 2006 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <gcj/cni.h>
|
|
|
|
#include <jvm.h>
|
|
|
|
#include <java-stack.h>
|
|
|
|
|
|
|
|
#include <java/security/VMAccessController.h>
|
|
|
|
|
2006-08-10 11:56:03 +02:00
|
|
|
jobjectArray
|
2006-07-28 12:54:11 +02:00
|
|
|
java::security::VMAccessController::getStack ()
|
|
|
|
{
|
2006-08-09 10:38:28 +02:00
|
|
|
return _Jv_StackTrace::GetAccessControlStack ();
|
2006-07-28 12:54:11 +02:00
|
|
|
}
|