hotspot/src/share/vm/memory/allocation.hpp
changeset 38733 2b65f4db449e
parent 37491 edf4cc53f5a3
child 41176 ff9f64534cff
equal deleted inserted replaced
38732:bb77e0dcc7e5 38733:2b65f4db449e
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   142   mtChunk             = 0x0C,  // chunk that holds content of arenas
   142   mtChunk             = 0x0C,  // chunk that holds content of arenas
   143   mtTest              = 0x0D,  // Test type for verifying NMT
   143   mtTest              = 0x0D,  // Test type for verifying NMT
   144   mtTracing           = 0x0E,  // memory used for Tracing
   144   mtTracing           = 0x0E,  // memory used for Tracing
   145   mtLogging           = 0x0F,  // memory for logging
   145   mtLogging           = 0x0F,  // memory for logging
   146   mtArguments         = 0x10,  // memory for argument processing
   146   mtArguments         = 0x10,  // memory for argument processing
   147   mtNone              = 0x11,  // undefined
   147   mtModule            = 0x11,  // memory for module processing
   148   mt_number_of_types  = 0x12   // number of memory types (mtDontTrack
   148   mtNone              = 0x12,  // undefined
       
   149   mt_number_of_types  = 0x13   // number of memory types (mtDontTrack
   149                                  // is not included as validate type)
   150                                  // is not included as validate type)
   150 };
   151 };
   151 
   152 
   152 typedef MemoryType MEMFLAGS;
   153 typedef MemoryType MEMFLAGS;
   153 
   154