| 362 | } |
| 363 | |
| 364 | static void |
| 365 | unp_pcb_unlock_pair(struct unpcb *unp, struct unpcb *unp2) |
| 366 | { |
| 367 | UNP_PCB_UNLOCK(unp); |
| 368 | if (unp != unp2) |
| 369 | UNP_PCB_UNLOCK(unp2); |
| 370 | } |
| 371 | |
| 372 | /* |
| 373 | * Try to lock the connected peer of an already locked socket. In some cases |
no outgoing calls
no test coverage detected