comparison src/share/vm/runtime/arguments.hpp @ 12490:4dba97fb1a6f

available GPUs are exposed to Graal only by the graal.gpu.isalist system property which is set up during command line argument parsing
author Doug Simon <doug.simon@oracle.com>
date Fri, 18 Oct 2013 23:55:35 +0200
parents cefad50507d8
children d8041d695d19
comparison
equal deleted inserted replaced
12489:0c651af30cc8 12490:4dba97fb1a6f
262 static SystemProperty *_sun_boot_library_path; 262 static SystemProperty *_sun_boot_library_path;
263 static SystemProperty *_java_library_path; 263 static SystemProperty *_java_library_path;
264 static SystemProperty *_java_home; 264 static SystemProperty *_java_home;
265 static SystemProperty *_java_class_path; 265 static SystemProperty *_java_class_path;
266 static SystemProperty *_sun_boot_class_path; 266 static SystemProperty *_sun_boot_class_path;
267 #ifdef GRAAL
268 static SystemProperty *_graal_gpu_isalist;
269 #endif
267 270
268 // Meta-index for knowing what packages are in the boot class path 271 // Meta-index for knowing what packages are in the boot class path
269 static char* _meta_index_path; 272 static char* _meta_index_path;
270 static char* _meta_index_dir; 273 static char* _meta_index_dir;
271 274