| 154 | } |
| 155 | |
| 156 | void |
| 157 | kobj_class_compile(kobj_class_t cls) |
| 158 | { |
| 159 | int error; |
| 160 | |
| 161 | error = kobj_class_compile1(cls, M_WAITOK); |
| 162 | KASSERT(error == 0, ("kobj_class_compile1 returned %d", error)); |
| 163 | } |
| 164 | |
| 165 | void |
| 166 | kobj_class_compile_static(kobj_class_t cls, kobj_ops_t ops) |
no test coverage detected