< prev index next >

src/share/vm/runtime/arguments.cpp

Print this page




  49 #endif
  50 #ifdef TARGET_OS_FAMILY_solaris
  51 # include "os_solaris.inline.hpp"
  52 #endif
  53 #ifdef TARGET_OS_FAMILY_windows
  54 # include "os_windows.inline.hpp"
  55 #endif
  56 #ifdef TARGET_OS_FAMILY_aix
  57 # include "os_aix.inline.hpp"
  58 #endif
  59 #ifdef TARGET_OS_FAMILY_bsd
  60 # include "os_bsd.inline.hpp"
  61 #endif
  62 #if INCLUDE_ALL_GCS
  63 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
  64 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
  65 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
  66 #endif // INCLUDE_ALL_GCS
  67 
  68 // Note: This is a special bug reporting site for the JVM
  69 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.sun.com/bugreport/crash.jsp"
  70 #define DEFAULT_JAVA_LAUNCHER  "generic"
  71 
  72 // Disable options not supported in this release, with a warning if they
  73 // were explicitly requested on the command-line
  74 #define UNSUPPORTED_OPTION(opt, description)                    \
  75 do {                                                            \
  76   if (opt) {                                                    \
  77     if (FLAG_IS_CMDLINE(opt)) {                                 \
  78       warning(description " is disabled in this release.");     \
  79     }                                                           \
  80     FLAG_SET_DEFAULT(opt, false);                               \
  81   }                                                             \
  82 } while(0)
  83 
  84 #define UNSUPPORTED_GC_OPTION(gc)                                     \
  85 do {                                                                  \
  86   if (gc) {                                                           \
  87     if (FLAG_IS_CMDLINE(gc)) {                                        \
  88       warning(#gc " is not supported in this VM.  Using Serial GC."); \
  89     }                                                                 \




  49 #endif
  50 #ifdef TARGET_OS_FAMILY_solaris
  51 # include "os_solaris.inline.hpp"
  52 #endif
  53 #ifdef TARGET_OS_FAMILY_windows
  54 # include "os_windows.inline.hpp"
  55 #endif
  56 #ifdef TARGET_OS_FAMILY_aix
  57 # include "os_aix.inline.hpp"
  58 #endif
  59 #ifdef TARGET_OS_FAMILY_bsd
  60 # include "os_bsd.inline.hpp"
  61 #endif
  62 #if INCLUDE_ALL_GCS
  63 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
  64 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
  65 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
  66 #endif // INCLUDE_ALL_GCS
  67 
  68 // Note: This is a special bug reporting site for the JVM
  69 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.java.com/bugreport/crash.jsp"
  70 #define DEFAULT_JAVA_LAUNCHER  "generic"
  71 
  72 // Disable options not supported in this release, with a warning if they
  73 // were explicitly requested on the command-line
  74 #define UNSUPPORTED_OPTION(opt, description)                    \
  75 do {                                                            \
  76   if (opt) {                                                    \
  77     if (FLAG_IS_CMDLINE(opt)) {                                 \
  78       warning(description " is disabled in this release.");     \
  79     }                                                           \
  80     FLAG_SET_DEFAULT(opt, false);                               \
  81   }                                                             \
  82 } while(0)
  83 
  84 #define UNSUPPORTED_GC_OPTION(gc)                                     \
  85 do {                                                                  \
  86   if (gc) {                                                           \
  87     if (FLAG_IS_CMDLINE(gc)) {                                        \
  88       warning(#gc " is not supported in this VM.  Using Serial GC."); \
  89     }                                                                 \


< prev index next >