src/share/vm/trace/traceMacros.hpp

Tue, 24 Jan 2012 14:48:22 +0100

author
rbackman
date
Tue, 24 Jan 2012 14:48:22 +0100
changeset 3487
34e2e90e7182
parent 3427
94ec88ca68e2
child 3709
0105f367a14c
permissions
-rw-r--r--

7130476: Remove use of #ifdef TRACE_DEFINE_KLASS_TRACE_ID from klass.hpp
Reviewed-by: kamg, phh, dsamersoff
Contributed-by: Rickard Backman <rickard.backman@oracle.com>

phh@3427 1 /*
phh@3427 2 * Copyright (c) 1997, 2011, 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_BEGIN(type, name)
phh@3427 29 #define EVENT_SET(name, field, value)
phh@3427 30 #define EVENT_COMMIT(name, ...)
phh@3427 31 #define EVENT_STARTED(name, time)
phh@3427 32 #define EVENT_ENDED(name, time)
phh@3427 33 #define EVENT_THREAD_EXIT(thread)
phh@3427 34
phh@3427 35 #define TRACE_ENABLED 0
phh@3427 36
phh@3427 37 #define TRACE_INIT_ID(k)
phh@3427 38 #define TRACE_BUFFER void*
phh@3427 39
phh@3427 40 #define TRACE_START() true
phh@3427 41 #define TRACE_INITIALIZE() 0
phh@3427 42
rbackman@3487 43 #define TRACE_SET_KLASS_TRACE_ID(x1, x2) do { } while (0)
rbackman@3487 44 #define TRACE_DEFINE_KLASS_METHODS typedef int ___IGNORED_hs_trace_type1
rbackman@3487 45 #define TRACE_DEFINE_KLASS_TRACE_ID typedef int ___IGNORED_hs_trace_type2
rbackman@3487 46
phh@3427 47 #endif

mercurial