| 384 | } |
| 385 | |
| 386 | rt_inline void *uma_zalloc(uma_zone_t zone, int flags) |
| 387 | { |
| 388 | void *buf = rt_malloc_align(zone->size, zone->align + 1); |
| 389 | if (buf) |
| 390 | rt_memset(buf, 0, sizeof(zone->size)); |
| 391 | return buf; |
| 392 | } |
| 393 | |
| 394 | rt_inline void uma_zfree(uma_zone_t zone, void *item) |
| 395 | { |
no test coverage detected