* Unlock two thread queues. Order is not important here. */
| 909 | * Unlock two thread queues. Order is not important here. |
| 910 | */ |
| 911 | static void |
| 912 | tdq_unlock_pair(struct tdq *one, struct tdq *two) |
| 913 | { |
| 914 | TDQ_UNLOCK(one); |
| 915 | TDQ_UNLOCK(two); |
| 916 | } |
| 917 | |
| 918 | /* |
| 919 | * Transfer load between two imbalanced thread queues. |
no outgoing calls
no test coverage detected