src/java.base/share/classes/jdk/internal/access/JavaLangAccess.java
changeset 55693 9a97b1393e72
parent 52427 3c6aa484536c
child 58679 9c3209ff7550
equal deleted inserted replaced
55692:64330bbb9be5 55693:9a97b1393e72
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   309     /**
   309     /**
   310      * Set the cause of Throwable
   310      * Set the cause of Throwable
   311      * @param cause set t's cause to new value
   311      * @param cause set t's cause to new value
   312      */
   312      */
   313     void setCause(Throwable t, Throwable cause);
   313     void setCause(Throwable t, Throwable cause);
       
   314 
       
   315     /**
       
   316      * Privileged System.loadLibrary
       
   317      *
       
   318      * @param caller on behalf of which the library is being loaded
       
   319      * @param library name of the library to load
       
   320      */
       
   321     void loadLibrary(Class<?> caller, String library);
   314 }
   322 }