| 491 | } |
| 492 | |
| 493 | static inline struct umtxq_chain * |
| 494 | umtxq_getchain(struct umtx_key *key) |
| 495 | { |
| 496 | |
| 497 | if (key->type <= TYPE_SEM) |
| 498 | return (&umtxq_chains[1][key->hash]); |
| 499 | return (&umtxq_chains[0][key->hash]); |
| 500 | } |
| 501 | |
| 502 | /* |
| 503 | * Lock a chain. |
no outgoing calls
no test coverage detected