natVMSecurityManager.cc (getClassContext): Add new arg: klass.
2005-03-17 Andrew Haley <aph@redhat.com> * java/lang/natVMSecurityManager.cc (getClassContext): Add new arg: klass. Pass klass to _Jv_StackTrace::GetClassContext(). * java/lang/ClassLoader.java (getParent): Pass class to VMSecurityManager.getClassContext() (getSystemClassLoader): Likewise. * java/lang/Package.java (getPackage): Likewise. (getPackages): Likewise. * java/lang/SecurityManager.java (getClassContext): Likewise. (currentClassLoader): Likewise. * java/lang/VMSecurityManager.java: (getClassContext): Likewise. (currentClassLoader) Add new arg: caller. Pass caller to VMSecurityManager.getClassContext. * stacktrace.cc (GetClassContext): Correct calculation of jframe_count. * boehm.cc (_Jv_MarkObj): (_Jv_MarkObj): Mark im->source_file_name. From-SVN: r96803
This commit is contained in:
parent
21e01bf10d
commit
e5a8980bb9
8 changed files with 45 additions and 22 deletions
|
@ -167,7 +167,7 @@ public class SecurityManager
|
|||
*/
|
||||
protected Class[] getClassContext()
|
||||
{
|
||||
return VMSecurityManager.getClassContext();
|
||||
return VMSecurityManager.getClassContext(SecurityManager.class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -189,7 +189,7 @@ public class SecurityManager
|
|||
*/
|
||||
protected ClassLoader currentClassLoader()
|
||||
{
|
||||
return VMSecurityManager.currentClassLoader();
|
||||
return VMSecurityManager.currentClassLoader(SecurityManager.class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue