2950N/A/*
3329N/A * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
2950N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2950N/A *
2950N/A * This code is free software; you can redistribute it and/or modify it
2950N/A * under the terms of the GNU General Public License version 2 only, as
2950N/A * published by the Free Software Foundation.
2950N/A *
2950N/A * This code is distributed in the hope that it will be useful, but WITHOUT
2950N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2950N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2950N/A * version 2 for more details (a copy is included in the LICENSE file that
2950N/A * accompanied this code).
2950N/A *
2950N/A * You should have received a copy of the GNU General Public License version
2950N/A * 2 along with this work; if not, write to the Free Software Foundation,
2950N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2950N/A *
2950N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2950N/A * or visit www.oracle.com if you need additional information or have any
2950N/A * questions.
2950N/A *
2950N/A */
2950N/A
2950N/A#ifndef SHARE_VM_RUNTIME_GLOBALS_EXT_HPP
2950N/A#define SHARE_VM_RUNTIME_GLOBALS_EXT_HPP
2950N/A
2950N/A// globals_extension.hpp extension
2950N/A
2950N/A// Additional CommandLineFlags enum values
2950N/A#define COMMANDLINEFLAG_EXT
2950N/A
2950N/A// Additional CommandLineFlagsWithType enum values
2950N/A#define COMMANDLINEFLAGWITHTYPE_EXT
2950N/A
2950N/A
2950N/A// globals.cpp extension
2950N/A
2950N/A// Additional flag definitions
2950N/A#define MATERIALIZE_FLAGS_EXT
2950N/A
2950N/A// Additional flag descriptors: see flagTable definition
2950N/A#define FLAGTABLE_EXT
2950N/A
2950N/A
2950N/A// Default method implementations
2950N/A
2950N/Ainline bool Flag::is_unlocker_ext() const {
2950N/A return false;
2950N/A}
2950N/A
2950N/Ainline bool Flag::is_unlocked_ext() const {
2950N/A return true;
2950N/A}
2950N/A
2991N/Ainline bool Flag::is_writeable_ext() const {
2991N/A return false;
2991N/A}
2991N/A
2991N/Ainline bool Flag::is_external_ext() const {
2991N/A return false;
2991N/A}
2991N/A
3329N/Ainline void Flag::get_locked_message_ext(char* buf, int buflen) const {
3329N/A assert(buf != NULL, "Buffer cannot be NULL");
3329N/A buf[0] = '\0';
3329N/A}
3329N/A
2950N/A#endif // SHARE_VM_RUNTIME_GLOBALS_EXT_HPP