| 317 | } |
| 318 | |
| 319 | void |
| 320 | kobj_init_static(kobj_t obj, kobj_class_t cls) |
| 321 | { |
| 322 | |
| 323 | KASSERT(kobj_mutex_inited == 0, |
| 324 | ("%s: only supported during early cycles", __func__)); |
| 325 | |
| 326 | kobj_init_common(obj, cls); |
| 327 | } |
| 328 | |
| 329 | void |
| 330 | kobj_delete(kobj_t obj, struct malloc_type *mtype) |
no test coverage detected