comparison src/share/vm/runtime/thread.cpp @ 22528:23db6926b163

Backed out d113a94d4fdd except for removing use of os::read
author Doug Simon <doug.simon@oracle.com>
date Mon, 07 Sep 2015 11:42:32 +0200
parents d113a94d4fdd
children ea6d1727fdc6
comparison
equal deleted inserted replaced
22527:8750eddf726f 22528:23db6926b163
3701 if (CleanChunkPoolAsync) { 3701 if (CleanChunkPoolAsync) {
3702 Chunk::start_chunk_pool_cleaner_task(); 3702 Chunk::start_chunk_pool_cleaner_task();
3703 } 3703 }
3704 3704
3705 #if INCLUDE_JVMCI 3705 #if INCLUDE_JVMCI
3706 SystemProperty *properties = Arguments::system_properties(); 3706 const char* jvmciCompiler = Arguments::PropertyList_get_value(Arguments::system_properties(), "jvmci.compiler");
3707 JVMCIRuntime::parse_properties(&properties);
3708 const char* jvmciCompiler = Arguments::PropertyList_get_value(properties, "jvmci.compiler");
3709 if (jvmciCompiler != NULL) { 3707 if (jvmciCompiler != NULL) {
3710 JVMCIRuntime::save_compiler(jvmciCompiler); 3708 JVMCIRuntime::save_compiler(jvmciCompiler);
3711 } 3709 }
3712 const char* jvmciOptions = Arguments::PropertyList_get_value(properties, "jvmci.options"); 3710 const char* jvmciOptions = Arguments::PropertyList_get_value(Arguments::system_properties(), "jvmci.options");
3713 if (jvmciOptions != NULL) { 3711 if (jvmciOptions != NULL) {
3714 JVMCIRuntime::save_options(jvmciOptions); 3712 JVMCIRuntime::save_options(jvmciOptions);
3715 } 3713 }
3716 #endif 3714 #endif
3717 3715