Monthly Archives: August 2011

Parallel Programming: August 2011 Update

This release of the parallel programming book features a new data-ownership chapter, the start of a new validation chapter, and lots of fixes, primarily from Elie De Brauwer. I expect to put out the next release in December. I will … Continue reading

Posted in Uncategorized | Tagged , | 6 Comments

Stupid RCU Tricks: Bug Hunt Number 2

Lai Jiangshan spotted another bug in the solution posted for bug hunt number 1. Here is the fixed (but still buggy) version: 1 struct foo { 2 struct list_head list; 3 int key; 4 int data; 5 }; 6 7 … Continue reading

Posted in Uncategorized | Tagged , | Comments Off on Stupid RCU Tricks: Bug Hunt Number 2