jcoomes@7122: /* jcoomes@7122: * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. jcoomes@7122: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jcoomes@7122: * jcoomes@7122: * This code is free software; you can redistribute it and/or modify it jcoomes@7122: * under the terms of the GNU General Public License version 2 only, as jcoomes@7122: * published by the Free Software Foundation. jcoomes@7122: * jcoomes@7122: * This code is distributed in the hope that it will be useful, but WITHOUT jcoomes@7122: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jcoomes@7122: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jcoomes@7122: * version 2 for more details (a copy is included in the LICENSE file that jcoomes@7122: * accompanied this code). jcoomes@7122: * jcoomes@7122: * You should have received a copy of the GNU General Public License version jcoomes@7122: * 2 along with this work; if not, write to the Free Software Foundation, jcoomes@7122: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jcoomes@7122: * jcoomes@7122: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jcoomes@7122: * or visit www.oracle.com if you need additional information or have any jcoomes@7122: * questions. jcoomes@7122: * jcoomes@7122: */ jcoomes@7122: jcoomes@7122: #ifndef SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP jcoomes@7122: #define SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP jcoomes@7122: jcoomes@7122: #include "memory/allocation.hpp" jcoomes@7122: #include "runtime/arguments.hpp" jcoomes@7122: jcoomes@7122: class ArgumentsExt: AllStatic { jcoomes@7122: public: jwilhelm@7369: static inline void set_gc_specific_flags(); jiangli@7282: static void process_options(const JavaVMInitArgs* args) {} jcoomes@7122: }; jcoomes@7122: jwilhelm@7369: void ArgumentsExt::set_gc_specific_flags() { jwilhelm@7369: Arguments::set_gc_specific_flags(); jcoomes@7122: } jcoomes@7122: jcoomes@7122: #endif // SHARE_VM_RUNTIME_ARGUMENTS_EXT_HPP