src/java.base/share/native/launcher/defines.h

Print this page
rev 12497 : 8027634: Support @argfiles for java command-line tool
Reviewed-by: ksrini, mchung


  72 #ifdef LAUNCHER_NAME
  73 static const char* const_launcher = LAUNCHER_NAME;
  74 #else  /* LAUNCHER_NAME */
  75 static char* const_launcher = NULL;
  76 #endif /* LAUNCHER_NAME */
  77 
  78 #ifdef EXPAND_CLASSPATH_WILDCARDS
  79 static const jboolean const_cpwildcard = JNI_TRUE;
  80 #else
  81 static const jboolean const_cpwildcard = JNI_FALSE;
  82 #endif /* EXPAND_CLASSPATH_WILDCARDS */
  83 
  84 #if defined(NEVER_ACT_AS_SERVER_CLASS_MACHINE)
  85 static const jint const_ergo_class = NEVER_SERVER_CLASS;
  86 #elif defined(ALWAYS_ACT_AS_SERVER_CLASS_MACHINE)
  87 static const jint const_ergo_class = ALWAYS_SERVER_CLASS;
  88 #else
  89 static const jint const_ergo_class = DEFAULT_POLICY;
  90 #endif /* NEVER_ACT_AS_SERVER_CLASS_MACHINE */
  91 





  92 #endif /*_DEFINES_H */


  72 #ifdef LAUNCHER_NAME
  73 static const char* const_launcher = LAUNCHER_NAME;
  74 #else  /* LAUNCHER_NAME */
  75 static char* const_launcher = NULL;
  76 #endif /* LAUNCHER_NAME */
  77 
  78 #ifdef EXPAND_CLASSPATH_WILDCARDS
  79 static const jboolean const_cpwildcard = JNI_TRUE;
  80 #else
  81 static const jboolean const_cpwildcard = JNI_FALSE;
  82 #endif /* EXPAND_CLASSPATH_WILDCARDS */
  83 
  84 #if defined(NEVER_ACT_AS_SERVER_CLASS_MACHINE)
  85 static const jint const_ergo_class = NEVER_SERVER_CLASS;
  86 #elif defined(ALWAYS_ACT_AS_SERVER_CLASS_MACHINE)
  87 static const jint const_ergo_class = ALWAYS_SERVER_CLASS;
  88 #else
  89 static const jint const_ergo_class = DEFAULT_POLICY;
  90 #endif /* NEVER_ACT_AS_SERVER_CLASS_MACHINE */
  91 
  92 #ifdef ENABLE_ARG_FILES
  93 static const jboolean const_disable_argfile = JNI_FALSE;
  94 #else
  95 static const jboolean const_disable_argfile = JNI_TRUE;
  96 #endif
  97 #endif /*_DEFINES_H */