* contigfree: * * Free a block of memory allocated by contigmalloc. * * This routine may not block. */
| 489 | * This routine may not block. |
| 490 | */ |
| 491 | void |
| 492 | contigfree(void *addr, unsigned long size, struct malloc_type *type) |
| 493 | { |
| 494 | |
| 495 | kmem_free((vm_offset_t)addr, size); |
| 496 | malloc_type_freed(type, round_page(size)); |
| 497 | } |
| 498 | |
| 499 | #ifdef MALLOC_DEBUG |
| 500 | static int |
no test coverage detected