hotspot/src/share/vm/runtime/arguments.hpp
changeset 2358 7c8346929fc6
parent 2105 347008ce7984
child 4434 4b41e5b42f81
--- a/hotspot/src/share/vm/runtime/arguments.hpp	Sun Mar 29 18:19:05 2009 -0400
+++ b/hotspot/src/share/vm/runtime/arguments.hpp	Wed Apr 01 16:38:01 2009 -0400
@@ -475,10 +475,13 @@
   // System properties
   static void init_system_properties();
 
-  // Proptery List manipulation
+  // Property List manipulation
   static void PropertyList_add(SystemProperty** plist, SystemProperty *element);
   static void PropertyList_add(SystemProperty** plist, const char* k, char* v);
-  static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v);
+  static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v) {
+    PropertyList_unique_add(plist, k, v, false);
+  }
+  static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append);
   static const char* PropertyList_get_value(SystemProperty* plist, const char* key);
   static int  PropertyList_count(SystemProperty* pl);
   static const char* PropertyList_get_key_at(SystemProperty* pl,int index);