...
Even though each thread is modifying a separate bit-field, they are both modifying the same location in memory. This is the same problem discussed in POS00-AC. Avoid race conditions with multiple threads but is harder to diagnose, because it is not obvious at first glance that the same memory location is being modified.
...