src/hotspot/share/services/memoryManager.hpp
author stuefe
Tue, 26 Nov 2019 16:21:29 +0100
branchstuefe-new-metaspace-branch
changeset 59272 54750b448264
parent 58177 4932dce35882
permissions -rw-r--r--
Metadatatype back to metaspace.hpp to reduce patch size
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50635
diff changeset
     2
 * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4459
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4459
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4459
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50635
diff changeset
    25
#ifndef SHARE_SERVICES_MEMORYMANAGER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50635
diff changeset
    26
#define SHARE_SERVICES_MEMORYMANAGER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    27
48114
e6b643827037 8191858: Add missing includes in memoryManager.hpp
stefank
parents: 47216
diff changeset
    28
#include "gc/shared/gcCause.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    29
#include "memory/allocation.hpp"
49658
8237a91c1cca 8199781: Don't use naked == for comparing oops
rkennke
parents: 48168
diff changeset
    30
#include "oops/oop.hpp"
48114
e6b643827037 8191858: Add missing includes in memoryManager.hpp
stefank
parents: 47216
diff changeset
    31
#include "oops/oopsHierarchy.hpp"
e6b643827037 8191858: Add missing includes in memoryManager.hpp
stefank
parents: 47216
diff changeset
    32
#include "runtime/handles.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    33
#include "runtime/timer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    34
#include "services/memoryUsage.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// A memory manager is responsible for managing one or more memory pools.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// The garbage collector is one type of memory managers responsible
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// for reclaiming memory occupied by unreachable objects.  A Java virtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// machine may have one or more memory managers.   It may
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// add or remove memory managers during execution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// A memory pool can be managed by more than one memory managers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class MemoryPool;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class GCMemoryManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class OopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11591
diff changeset
    47
class MemoryManager : public CHeapObj<mtInternal> {
50635
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
    48
protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    max_num_pools = 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
50635
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
    53
private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  MemoryPool* _pools[max_num_pools];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  int         _num_pools;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48114
diff changeset
    57
  const char* _name;
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48114
diff changeset
    58
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  volatile instanceOop _memory_mgr_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
public:
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48114
diff changeset
    63
  MemoryManager(const char* name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  int num_memory_pools() const           { return _num_pools; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  MemoryPool* get_memory_pool(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    assert(index >= 0 && index < _num_pools, "Invalid index");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    return _pools[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
50635
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
    71
  int add_pool(MemoryPool* pool);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 53244
diff changeset
    73
  bool is_manager(instanceHandle mh)     { return mh() == _memory_mgr_obj; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  virtual instanceOop get_memory_manager_instance(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  virtual bool is_gc_memory_manager()    { return false; }
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48114
diff changeset
    77
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48114
diff changeset
    78
  const char* name() const { return _name; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Static factory methods to get a memory manager of a specific type
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static MemoryManager*   get_code_cache_memory_manager();
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
    85
  static MemoryManager*   get_metaspace_memory_manager();
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
    86
};
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
    87
11591
854c0dff3844 7066129: GarbageCollectorMXBean#getLastGcInfo leaks native memory
dsamersoff
parents: 9623
diff changeset
    88
class GCStatInfo : public ResourceObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  size_t _index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  jlong  _start_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  jlong  _end_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // We keep memory usage of all memory pools
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  MemoryUsage* _before_gc_usage_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  MemoryUsage* _after_gc_usage_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  int          _usage_array_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  void set_gc_usage(int pool_index, MemoryUsage, bool before_gc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  GCStatInfo(int num_pools);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  ~GCStatInfo();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  size_t gc_index()               { return _index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  jlong  start_time()             { return _start_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  jlong  end_time()               { return _end_time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  int    usage_array_size()       { return _usage_array_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  MemoryUsage before_gc_usage_for_pool(int pool_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    assert(pool_index >= 0 && pool_index < _usage_array_size, "Range checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    return _before_gc_usage_array[pool_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  MemoryUsage after_gc_usage_for_pool(int pool_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    assert(pool_index >= 0 && pool_index < _usage_array_size, "Range checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    return _after_gc_usage_array[pool_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   118
  MemoryUsage* before_gc_usage_array() { return _before_gc_usage_array; }
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   119
  MemoryUsage* after_gc_usage_array()  { return _after_gc_usage_array; }
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   120
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  void set_index(size_t index)    { _index = index; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  void set_start_time(jlong time) { _start_time = time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  void set_end_time(jlong time)   { _end_time = time; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void set_before_gc_usage(int pool_index, MemoryUsage usage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    assert(pool_index >= 0 && pool_index < _usage_array_size, "Range checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    set_gc_usage(pool_index, usage, true /* before gc */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  void set_after_gc_usage(int pool_index, MemoryUsage usage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    assert(pool_index >= 0 && pool_index < _usage_array_size, "Range checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    set_gc_usage(pool_index, usage, false /* after gc */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   133
  void clear();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
class GCMemoryManager : public MemoryManager {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // TODO: We should unify the GCCounter and GCMemoryManager statistic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  size_t       _num_collections;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  elapsedTimer _accumulated_timer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  GCStatInfo*  _last_gc_stat;
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   142
  Mutex*       _last_gc_lock;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   143
  GCStatInfo*  _current_gc_stat;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  int          _num_gc_threads;
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   145
  volatile bool _notification_enabled;
50635
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   146
  const char*  _gc_end_message;
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   147
  bool         _pool_always_affected_by_gc[MemoryManager::max_num_pools];
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   148
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
public:
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 48114
diff changeset
   150
  GCMemoryManager(const char* name, const char* gc_end_message);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  ~GCMemoryManager();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
50635
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   153
  void add_pool(MemoryPool* pool);
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   154
  void add_pool(MemoryPool* pool, bool always_affected_by_gc);
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   155
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   156
  bool pool_always_affected_by_gc(int index) {
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   157
    assert(index >= 0 && index < num_memory_pools(), "Invalid index");
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   158
    return _pool_always_affected_by_gc[index];
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   159
  }
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   160
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  void   initialize_gc_stat_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  bool   is_gc_memory_manager()         { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  jlong  gc_time_ms()                   { return _accumulated_timer.milliseconds(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  size_t gc_count()                     { return _num_collections; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int    num_gc_threads()               { return _num_gc_threads; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  void   set_num_gc_threads(int count)  { _num_gc_threads = count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   169
  void   gc_begin(bool recordGCBeginTime, bool recordPreGCUsage,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   170
                  bool recordAccumulatedGCTime);
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   171
  void   gc_end(bool recordPostGCUsage, bool recordAccumulatedGCTime,
50635
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   172
                bool recordGCEndTime, bool countCollection, GCCause::Cause cause,
5d3c5af82654 8195115: G1 Old Gen MemoryPool CollectionUsage.used values don't reflect mixed GC results
phh
parents: 49936
diff changeset
   173
                bool allMemoryPoolsAffected);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void        reset_gc_stat()   { _num_collections = 0; _accumulated_timer.reset(); }
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   176
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   177
  // Copy out _last_gc_stat to the given destination, returning
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   178
  // the collection count. Zero signifies no gc has taken place.
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   179
  size_t get_last_gc_stat(GCStatInfo* dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   181
  void set_notification_enabled(bool enabled) { _notification_enabled = enabled; }
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   182
  bool is_notification_enabled() { return _notification_enabled; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 50635
diff changeset
   185
#endif // SHARE_SERVICES_MEMORYMANAGER_HPP