comparison src/share/vm/jvmci/jvmciRuntime.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 67ffe0bc3dc6
children cbab86a6c7f6
comparison
equal deleted inserted replaced
22527:8750eddf726f 22528:23db6926b163
863 return; 863 return;
864 } 864 }
865 *sep = '\0'; 865 *sep = '\0';
866 const char* name = line; 866 const char* name = line;
867 char* value = sep + 1; 867 char* value = sep + 1;
868 if(Arguments::PropertyList_get_value(*_plist, name) == NULL) { 868 Arguments::PropertyList_add(_plist, name, value);
869 Arguments::PropertyList_add(_plist, name, value);
870 }
871 } 869 }
872 }; 870 };
873 871
874 void JVMCIRuntime::parse_properties(SystemProperty** plist) { 872 void JVMCIRuntime::parse_properties(SystemProperty** plist) {
875 char jvmciDir[JVM_MAXPATHLEN]; 873 char jvmciDir[JVM_MAXPATHLEN];