mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
6819213: revive sun.boot.library.path
Support multiplex and mutable sun.boot.library.path Reviewed-by: acorn, dcubed, xlu
This commit is contained in:
parent
d37d544754
commit
4be7c3c672
9 changed files with 345 additions and 50 deletions
|
@ -475,10 +475,13 @@ class Arguments : AllStatic {
|
|||
// 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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue