src/java.base/windows/native/libjli/java_md.c

Print this page




 953  * Terminates AWT preloading
 954  */
 955 void AWTPreloadStop() {
 956     if (fnPreloadStop != NULL) {
 957         fnPreloadStop();
 958     }
 959 }
 960 
 961 #endif /* ENABLE_AWT_PRELOAD */
 962 
 963 int
 964 JVMInit(InvocationFunctions* ifn, jlong threadStackSize,
 965         int argc, char **argv,
 966         int mode, char *what, int ret)
 967 {
 968     ShowSplashScreen();
 969     return ContinueInNewThread(ifn, threadStackSize, argc, argv, mode, what, ret);
 970 }
 971 
 972 void
 973 PostJVMInit(JNIEnv *env, jstring mainClass, JavaVM *vm)
 974 {
 975     // stubbed out for windows and *nixes.
 976 }
 977 
 978 void
 979 RegisterThread()
 980 {
 981     // stubbed out for windows and *nixes.
 982 }
 983 
 984 /*
 985  * on windows, we return a false to indicate this option is not applicable
 986  */
 987 jboolean
 988 ProcessPlatformOption(const char *arg)
 989 {
 990     return JNI_FALSE;
 991 }
 992 
 993 /*




 953  * Terminates AWT preloading
 954  */
 955 void AWTPreloadStop() {
 956     if (fnPreloadStop != NULL) {
 957         fnPreloadStop();
 958     }
 959 }
 960 
 961 #endif /* ENABLE_AWT_PRELOAD */
 962 
 963 int
 964 JVMInit(InvocationFunctions* ifn, jlong threadStackSize,
 965         int argc, char **argv,
 966         int mode, char *what, int ret)
 967 {
 968     ShowSplashScreen();
 969     return ContinueInNewThread(ifn, threadStackSize, argc, argv, mode, what, ret);
 970 }
 971 
 972 void
 973 PostJVMInit(JNIEnv *env, jclass mainClass, JavaVM *vm)
 974 {
 975     // stubbed out for windows and *nixes.
 976 }
 977 
 978 void
 979 RegisterThread()
 980 {
 981     // stubbed out for windows and *nixes.
 982 }
 983 
 984 /*
 985  * on windows, we return a false to indicate this option is not applicable
 986  */
 987 jboolean
 988 ProcessPlatformOption(const char *arg)
 989 {
 990     return JNI_FALSE;
 991 }
 992 
 993 /*