show/hide this revision's text 2 corrected spelling and grammar

If the locks make sure only 1 one thread accesses the locked data at a time, then want what controls access to the locking functions?

I thought that boost::mutex::scoped_lock should be at the beginning of each of my functions so the local variables don't get modified unexpectedly by another thread, is that correct? What if two threads are trying to acquire the lock at very close times. ? Won't the lock's local variables used internally be corrupt corrupted by the other thread?

My question is not boost specific boost-specific but I'll probably be using that unless you recommend another.

show/hide this revision's text 1

Why do locks work?

If the locks make sure only 1 thread accesses the locked data at a time then want controls access to the locking functions?

I thought that boost::mutex::scoped_lock should be at the beginning of each of my functions so the local variables don't get modified unexpectedly by another thread, is that correct? What if two threads are trying to acquire the lock at very close times. Won't the lock's local variables used internally be corrupt by the other thread?

My question is not boost specific but I'll probably be using that unless you recommend another.