author | dholmes |
Sat, 23 Jun 2018 01:32:41 -0400 | |
changeset 50735 | 2f2af62dfac7 |
parent 49339 | e651c3ea6ea8 |
permissions | -rw-r--r-- |
26838 | 1 |
/* |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
29696
diff
changeset
|
2 |
* Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved. |
26838 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP |
|
26 |
#define SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP |
|
27 |
||
28 |
#include "memory/allocation.hpp" |
|
29 |
#include "runtime/arguments.hpp" |
|
30 |
||
31 |
class ArgumentsExt: AllStatic { |
|
32 |
public: |
|
27244
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
33 |
// The argument processing extension. Returns true if there is |
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
34 |
// no additional parsing needed in Arguments::parse() for the option. |
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
35 |
// Otherwise returns false. |
a2bd9d3112d4
8060256: The loop in Arguments::parse() can be enhanced.
jiangli
parents:
27166
diff
changeset
|
36 |
static inline bool process_options(const JavaVMOption *option) { return false; } |
28838
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
27892
diff
changeset
|
37 |
static inline void report_unsupported_options() { } |
26838 | 38 |
}; |
39 |
||
40 |
#endif // SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP |