This commit is contained in:
Thomas Schatzl 2013-09-19 09:26:08 +02:00
commit 9005953c71
87 changed files with 1602 additions and 557 deletions

View file

@ -3331,6 +3331,11 @@ jint Threads::create_vm(JavaVMInitArgs* args, bool* canTryAgain) {
jint parse_result = Arguments::parse(args);
if (parse_result != JNI_OK) return parse_result;
os::init_before_ergo();
jint ergo_result = Arguments::apply_ergo();
if (ergo_result != JNI_OK) return ergo_result;
if (PauseAtStartup) {
os::pause();
}