annotate src/share/vm/services/allocationContextService.hpp @ 21387:3bf051bb2691

Remove final and abstract class restrictions
author Christian Wimmer <christian.wimmer@oracle.com>
date Thu, 14 May 2015 16:11:58 -0700
parents fa6c442c59ee
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20450
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
1 /*
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
4 *
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
7 * published by the Free Software Foundation.
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
8 *
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
13 * accompanied this code).
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
14 *
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
18 *
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
21 * questions.
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
22 *
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
23 */
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
24
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
25 #ifndef SHARE_VM_SERVICES_ALLOCATION_CONTEXT_SERVICE_HPP
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
26 #define SHARE_VM_SERVICES_ALLOCATION_CONTEXT_SERVICE_HPP
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
27
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
28 #include "utilities/exceptions.hpp"
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
29
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
30 class AllocationContextService: public AllStatic {
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
31 public:
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
32 static inline bool should_notify();
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
33 static inline void notify(TRAPS);
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
34 };
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
35
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
36 bool AllocationContextService::should_notify() { return false; }
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
37 void AllocationContextService::notify(TRAPS) { }
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
38
fa6c442c59ee 8057827: notify an obj when allocation context stats are available
jcoomes
parents:
diff changeset
39 #endif // SHARE_VM_SERVICES_ALLOCATION_CONTEXT_SERVICE_HPP