Subj : Re: Best locking methods To : comp.programming.threads From : Chris Thomasson Date : Sat Apr 09 2005 05:12 am > This works fine using Critical Section's, but since there seem to be many > methods available I wondered whether there's maybe a significantly faster > method. What would others use for such a task? I would use hash-table with per-bucket lock-free lifo's to manage the writers, and let RCU handle all of the readers... .