Subj : Re: Hazard Pointers w/o memory barrier. To : comp.programming.threads From : Chris Thomasson Date : Tue Apr 19 2005 11:34 am > BOOL ScanForQuiescentPeriod() > { > BOOL period = TRUE; > per_thread_t *t = g_rcu_threads; > > while ( t ) > { > if ( t->old_q == t->new_q ) > { > period = FALSE; > } > > t = t->next; > } return period; > } :) .