src/share/vm/runtime/vmStructs.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,29 **** --- 20,39 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_RUNTIME_VMSTRUCTS_HPP + #define SHARE_VM_RUNTIME_VMSTRUCTS_HPP + + #ifndef VM_STRUCTS_KERNEL + #include "utilities/debug.hpp" + #endif + #ifdef COMPILER1 + #include "c1/c1_Runtime1.hpp" + #endif + // This table encapsulates the debugging information required by the // serviceability agent in order to run. Specifically, we need to // understand the layout of certain C data structures (offsets, in // bytes, of their fields.) //
*** 117,121 **** --- 127,133 ---- // Look up a type in localHotSpotVMTypes using strcmp() (debug build only). // Returns 1 if found, 0 if not. // debug_only(static int findType(const char* typeName);) static int findType(const char* typeName); }; + + #endif // SHARE_VM_RUNTIME_VMSTRUCTS_HPP