* Release key. */
| 902 | * Release key. |
| 903 | */ |
| 904 | void |
| 905 | umtx_key_release(struct umtx_key *key) |
| 906 | { |
| 907 | if (key->shared) |
| 908 | vm_object_deallocate(key->info.shared.object); |
| 909 | } |
| 910 | |
| 911 | /* |
| 912 | * Fetch and compare value, sleep on the address if value is not changed. |
no test coverage detected