src/share/vm/memory/space.inline.hpp

changeset 777
37f87013dfd8
parent 435
a61af66fc99e
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/memory/space.inline.hpp	Wed Jun 04 13:51:09 2008 -0700
     1.2 +++ b/src/share/vm/memory/space.inline.hpp	Thu Jun 05 15:57:56 2008 -0700
     1.3 @@ -22,6 +22,10 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +inline HeapWord* Space::block_start(const void* p) {
     1.8 +  return block_start_const(p);
     1.9 +}
    1.10 +
    1.11  inline HeapWord* OffsetTableContigSpace::allocate(size_t size) {
    1.12    HeapWord* res = ContiguousSpace::allocate(size);
    1.13    if (res != NULL) {
    1.14 @@ -50,7 +54,8 @@
    1.15    return res;
    1.16  }
    1.17  
    1.18 -inline HeapWord* OffsetTableContigSpace::block_start(const void* p) const {
    1.19 +inline HeapWord*
    1.20 +OffsetTableContigSpace::block_start_const(const void* p) const {
    1.21    return _offsets.block_start(p);
    1.22  }
    1.23  

mercurial