Searched refs:type_and_gencount (Results 1 – 1 of 1) sorted by relevance
207 union turnstile_type_gencount type_and_gencount; in turnstile_get_type() local209 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() local252 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() local262 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 …]