8026849: Fix typos in the GC code, part 2

Fixed typos in assert messages, flag descriptions and verbose messages

Reviewed-by: stefank, tschatzl
This commit is contained in:
Jesper Wilhelmsson 2013-12-10 15:11:02 +01:00
parent 5d460f1f3d
commit 40ba2bba2c
16 changed files with 27 additions and 31 deletions

View file

@ -1352,7 +1352,7 @@ void BinaryTreeDictionary<Chunk_t, FreeList_t>::print_free_lists(outputStream* s
template <class Chunk_t, template <class> class FreeList_t>
void BinaryTreeDictionary<Chunk_t, FreeList_t>::verify_tree() const {
guarantee(root() == NULL || total_free_blocks() == 0 ||
total_size() != 0, "_total_size should't be 0?");
total_size() != 0, "_total_size shouldn't be 0?");
guarantee(root() == NULL || root()->parent() == NULL, "_root shouldn't have parent");
verify_tree_helper(root());
}