src/share/vm/trace/traceMacros.hpp

Wed, 26 Mar 2014 14:15:02 +0100

author
ehelin
date
Wed, 26 Mar 2014 14:15:02 +0100
changeset 6608
fa21c9537e6e
parent 5673
623d923529df
child 6876
710a3c8b516e
child 7367
82d3e7b5277a
permissions
-rw-r--r--

8035667: EventMetaspaceSummary doesn't report committed Metaspace memory
Reviewed-by: jmasa, stefank

phh@3427 1 /*
sla@5237 2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
phh@3427 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
phh@3427 4 *
phh@3427 5 * This code is free software; you can redistribute it and/or modify it
phh@3427 6 * under the terms of the GNU General Public License version 2 only, as
phh@3427 7 * published by the Free Software Foundation.
phh@3427 8 *
phh@3427 9 * This code is distributed in the hope that it will be useful, but WITHOUT
phh@3427 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
phh@3427 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
phh@3427 12 * version 2 for more details (a copy is included in the LICENSE file that
phh@3427 13 * accompanied this code).
phh@3427 14 *
phh@3427 15 * You should have received a copy of the GNU General Public License version
phh@3427 16 * 2 along with this work; if not, write to the Free Software Foundation,
phh@3427 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
phh@3427 18 *
phh@3427 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
phh@3427 20 * or visit www.oracle.com if you need additional information or have any
phh@3427 21 * questions.
phh@3427 22 *
phh@3427 23 */
phh@3427 24
phh@3427 25 #ifndef SHARE_VM_TRACE_TRACE_MACRO_HPP
phh@3427 26 #define SHARE_VM_TRACE_TRACE_MACRO_HPP
phh@3427 27
phh@3427 28 #define EVENT_THREAD_EXIT(thread)
mgronlun@5673 29 #define EVENT_THREAD_DESTRUCT(thread)
phh@3427 30
sla@5237 31 #define TRACE_INIT_ID(k)
sla@5237 32 #define TRACE_DATA TraceThreadData
phh@3427 33
sla@5237 34 #define TRACE_START() JNI_OK
sla@5237 35 #define TRACE_INITIALIZE() JNI_OK
phh@3427 36
rbackman@3487 37 #define TRACE_DEFINE_KLASS_METHODS typedef int ___IGNORED_hs_trace_type1
rbackman@3487 38 #define TRACE_DEFINE_KLASS_TRACE_ID typedef int ___IGNORED_hs_trace_type2
rbackman@3709 39 #define TRACE_DEFINE_OFFSET typedef int ___IGNORED_hs_trace_type3
rbackman@3709 40 #define TRACE_ID_OFFSET in_ByteSize(0); ShouldNotReachHere()
rbackman@3709 41 #define TRACE_TEMPLATES(template)
rbackman@3709 42 #define TRACE_INTRINSICS(do_intrinsic, do_class, do_name, do_signature, do_alias)
rbackman@3487 43
phh@3427 44 #endif

mercurial