Thread.java (accessControlState): New field.
2006-08-14 Gary Benson <gbenson@redhat.com> * java/lang/Thread.java (accessControlState): New field. * java/security/VMAccessControlState.java: New file. * java/security/natVMAccessControlState.cc: Likewise. * java/security/VMAccessController.java (contexts, inGetContext): Removed. (pushContext, popContext, getContext): Use VMAccessControlState. * Makefile.am (nat_source_files): Updated. * sources.am, Makefile.in: Rebuilt. From-SVN: r116128
This commit is contained in:
parent
2b3969faee
commit
be6415beae
8 changed files with 181 additions and 37 deletions
|
@ -144,6 +144,11 @@ public class Thread implements Runnable
|
|||
/** The uncaught exception handler. */
|
||||
UncaughtExceptionHandler exceptionHandler;
|
||||
|
||||
/** The access control state for this thread. Package accessible
|
||||
* for use by java.security.VMAccessControlState's native method.
|
||||
*/
|
||||
Object accessControlState = null;
|
||||
|
||||
// This describes the top-most interpreter frame for this thread.
|
||||
RawData interp_frame;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue