Remove the header for block h */
| 278 | |
| 279 | /* Remove the header for block h */ |
| 280 | void GC_remove_header(struct hblk *h) |
| 281 | { |
| 282 | hdr ** ha; |
| 283 | |
| 284 | GET_HDR_ADDR(h, ha); |
| 285 | free_hdr(*ha); |
| 286 | *ha = 0; |
| 287 | } |
| 288 | |
| 289 | /* Remove forwarding counts for h */ |
| 290 | void GC_remove_counts(struct hblk *h, size_t sz/* bytes */) |
no test coverage detected