Home
last modified time | relevance | path

Searched refs:type_and_gencount (Results 1 – 1 of 1) sorted by relevance

/xnu-12377.1.9/osfmk/kern/
H A Dturnstile.c207 union turnstile_type_gencount type_and_gencount; in turnstile_get_type() local
209 type_and_gencount.value = atomic_load_explicit(&turnstile->ts_type_gencount, memory_order_relaxed); in turnstile_get_type()
210 return (turnstile_type_t) type_and_gencount.ts_type; in turnstile_get_type()
250 union turnstile_type_gencount type_and_gencount; in turnstile_get_gencount() local
252 type_and_gencount.value = atomic_load_explicit(&turnstile->ts_type_gencount, memory_order_relaxed); in turnstile_get_gencount()
253 return (uint32_t) type_and_gencount.ts_gencount; in turnstile_get_gencount()
259 union turnstile_type_gencount type_and_gencount; in turnstile_set_type_and_increment_gencount() local
262 type_and_gencount.value = atomic_load_explicit(&turnstile->ts_type_gencount, memory_order_relaxed); in turnstile_set_type_and_increment_gencount()
263 type_and_gencount.ts_type = type; in turnstile_set_type_and_increment_gencount()
264 type_and_gencount.ts_gencount++; in turnstile_set_type_and_increment_gencount()
[all …]