Check properties of any chunk, whether free, inuse, mmapped etc
| 1720 | |
| 1721 | // Check properties of any chunk, whether free, inuse, mmapped etc |
| 1722 | void malloc_state::do_check_any_chunk(mchunkptr p) const |
| 1723 | { |
| 1724 | assert((spp_is_aligned(chunk2mem(p))) || (p->_head == FENCEPOST_HEAD)); |
| 1725 | assert(ok_address(p)); |
| 1726 | } |
| 1727 | |
| 1728 | // Check properties of top chunk |
| 1729 | void malloc_state::do_check_top_chunk(mchunkptr p) const |
nothing calls this directly
no test coverage detected