hotspot/src/share/vm/runtime/arguments.hpp
changeset 7397 5b173b4ca846
parent 6988 282ba493439c
child 8476 7e34c2d4cf9b
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
       
    25 #ifndef SHARE_VM_RUNTIME_ARGUMENTS_HPP
       
    26 #define SHARE_VM_RUNTIME_ARGUMENTS_HPP
       
    27 
       
    28 #include "runtime/java.hpp"
       
    29 #include "runtime/perfData.hpp"
       
    30 #include "utilities/top.hpp"
       
    31 
    25 // Arguments parses the command line and recognizes options
    32 // Arguments parses the command line and recognizes options
    26 
    33 
    27 // Invocation API hook typedefs (these should really be defined in jni.hpp)
    34 // Invocation API hook typedefs (these should really be defined in jni.hpp)
    28 extern "C" {
    35 extern "C" {
    29   typedef void (JNICALL *abort_hook_t)(void);
    36   typedef void (JNICALL *abort_hook_t)(void);
   530 #ifdef KERNEL
   537 #ifdef KERNEL
   531   // For java kernel vm, return property string for kernel properties.
   538   // For java kernel vm, return property string for kernel properties.
   532   static char *get_kernel_properties();
   539   static char *get_kernel_properties();
   533 #endif // KERNEL
   540 #endif // KERNEL
   534 };
   541 };
       
   542 
       
   543 #endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP