| 109 | } |
| 110 | |
| 111 | static __inline int |
| 112 | _lockmgr_args_rw(struct lock *lk, u_int flags, struct rwlock *ilk, |
| 113 | const char *wmesg, int prio, int timo, const char *file, int line) |
| 114 | { |
| 115 | |
| 116 | return (__lockmgr_args(lk, flags, (ilk != NULL) ? &ilk->lock_object : |
| 117 | NULL, wmesg, prio, timo, file, line)); |
| 118 | } |
| 119 | |
| 120 | /* |
| 121 | * Define aliases in order to complete lockmgr KPI. |
nothing calls this directly
no test coverage detected