comparison src/share/vm/memory/blockOffsetTable.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents 859cd1a76f8a
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
422 public: 422 public:
423 BlockOffsetArrayNonContigSpace(BlockOffsetSharedArray* array, MemRegion mr): 423 BlockOffsetArrayNonContigSpace(BlockOffsetSharedArray* array, MemRegion mr):
424 BlockOffsetArray(array, mr, false), 424 BlockOffsetArray(array, mr, false),
425 _unallocated_block(_bottom) { } 425 _unallocated_block(_bottom) { }
426 426
427 // accessor 427 // Accessor
428 HeapWord* unallocated_block() const { 428 HeapWord* unallocated_block() const {
429 assert(BlockOffsetArrayUseUnallocatedBlock, 429 assert(BlockOffsetArrayUseUnallocatedBlock,
430 "_unallocated_block is not being maintained"); 430 "_unallocated_block is not being maintained");
431 return _unallocated_block; 431 return _unallocated_block;
432 } 432 }