natVMAccessController.cc 553 B

123456789101112131415161718192021222324
  1. // natVMAccessController.cc -- Native part of the VMAccessController class.
  2. /* Copyright (C) 2006 Free Software Foundation, Inc.
  3. This file is part of libgcj.
  4. This software is copyrighted work licensed under the terms of the
  5. Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
  6. details. */
  7. #include <config.h>
  8. #include <gcj/cni.h>
  9. #include <jvm.h>
  10. #include <java-stack.h>
  11. #include <java/security/VMAccessController.h>
  12. jobjectArray
  13. java::security::VMAccessController::getStack ()
  14. {
  15. return _Jv_StackTrace::GetAccessControlStack ();
  16. }