| 88 | }; |
| 89 | |
| 90 | void |
| 91 | ff_mtx_init(struct lock_object *lo, const char *name, const char *type, int opts) |
| 92 | { |
| 93 | lock_init(lo, &lock_class_mtx_sleep, name, type, opts); |
| 94 | } |
| 95 | |
| 96 | void |
| 97 | mtx_sysinit(void *arg) |
nothing calls this directly
no test coverage detected