Monthly Archives: July 2010

No reader wait thread safe objects

One of the things that really sucks about concurrent programming is you are always are having to wait on shared data. Have a global table? You have to wait on a lock to write, you have to wait  on a … Continue reading

Posted in Uncategorized | Leave a comment

Trees

I was thinking about trees and tree traversal, mostly because I had to write a breadth first traversal in C to look at an inheritance hierarchy (C3 superclass linearization (aka MRO) is way too big a hammer for what I … Continue reading

Posted in Uncategorized | Leave a comment