* Place another refcount on a uidinfo struct. */
| 1415 | * Place another refcount on a uidinfo struct. |
| 1416 | */ |
| 1417 | void |
| 1418 | uihold(struct uidinfo *uip) |
| 1419 | { |
| 1420 | |
| 1421 | refcount_acquire(&uip->ui_ref); |
| 1422 | } |
| 1423 | |
| 1424 | /*- |
| 1425 | * Since uidinfo structs have a long lifetime, we use an |
no test coverage detected