comparison src/share/vm/runtime/arguments.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 9de67bf4244d
children 06f017f7daa7 da091bb67459
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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