comparison src/share/vm/gc_implementation/shared/parGCAllocBuffer.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 de6a9e811145
children 1e1c8d358b52
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
90 assert(pointer_delta(_top, obj) == word_sz, "Bad undo"); 90 assert(pointer_delta(_top, obj) == word_sz, "Bad undo");
91 _top = obj; 91 _top = obj;
92 } 92 }
93 93
94 // The total (word) size of the buffer, including both allocated and 94 // The total (word) size of the buffer, including both allocated and
95 // unallocted space. 95 // unallocated space.
96 size_t word_sz() { return _word_sz; } 96 size_t word_sz() { return _word_sz; }
97 97
98 // Should only be done if we are about to reset with a new buffer of the 98 // Should only be done if we are about to reset with a new buffer of the
99 // given size. 99 // given size.
100 void set_word_size(size_t new_word_sz) { 100 void set_word_size(size_t new_word_sz) {