hotspot/src/share/vm/runtime/arguments.hpp
changeset 28372 ce0aad4b8c44
parent 27926 0e2e188ab887
child 28650 772aaab2582f
equal deleted inserted replaced
28371:92e60e58ba8b 28372:ce0aad4b8c44
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   570 
   570 
   571   // Update/Initialize System properties after JDK version number is known
   571   // Update/Initialize System properties after JDK version number is known
   572   static void init_version_specific_system_properties();
   572   static void init_version_specific_system_properties();
   573 
   573 
   574   // Property List manipulation
   574   // Property List manipulation
       
   575   static void PropertyList_add(SystemProperty *element);
   575   static void PropertyList_add(SystemProperty** plist, SystemProperty *element);
   576   static void PropertyList_add(SystemProperty** plist, SystemProperty *element);
   576   static void PropertyList_add(SystemProperty** plist, const char* k, char* v);
   577   static void PropertyList_add(SystemProperty** plist, const char* k, char* v);
   577   static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v) {
   578   static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v) {
   578     PropertyList_unique_add(plist, k, v, false);
   579     PropertyList_unique_add(plist, k, v, false);
   579   }
   580   }