vote up 2 vote down star
1

The title says it all. In Windows environment, is Boost's scoped mutex using WinAPI's critical sections, or something else?

flag

You didn't take a look into the Boost source code, did you? :) – OregonGhost May 18 at 12:55
I'm in a location where I have no access to it :( – nhaa123 May 18 at 13:00

2 Answers

vote up 5 vote down check

The current version of boost::mutex uses neither a Win32 CRITICAL_SECTION, nor a Win32 Mutex. Instead, it uses atomic operations and a Win32 Event for blocking waits.

Older versions (boost 1.34.1 and prior) were a wrapper around CRITICAL_SECTION on Windows.

Incidentally, the mutex itself is not scoped. The boost::mutex::scoped_lock type and, in recent versions, boost::lock_guard<boost::mutex> and boost::unique_lock<boost::mutex> provide RAII wrappers for locking a mutex to ensure you don't forget to unlock it.

The boost::lock_guard<> and boost::unique_lock<> templates work with any type with lock() and unlock() member functions, so you can use them with inter-process mutexes if desired.

link|flag
Thank you for the answer. – nhaa123 May 19 at 6:14
vote up 0 vote down

Win32's CRITICAL_SECTION can only be used among the threads of a single process. If you need to use something between processes, you need a mutex. Boost says nothing about critical sections so I would assume it is using mutexes.

"scoped" just means it has a wrapper that uses RAII to automatically unlock the mutex at the end of a particular scope.

link|flag
Yes, these I already knew. Hmm, guess I need to look into the actual source later on.. – nhaa123 May 18 at 13:04
If they call it a "mutex", and do not mention the phrase "critical section" assume with very high probability it is not a critical section. – Jason S May 18 at 13:06
Hah, well thought :) – nhaa123 May 18 at 13:54
Boost::interprocess is reputable enough that I think that way about it. Clarity is important. If it were someone's independent library I'm not sure I'd be as confident. – Jason S May 18 at 14:37
However, the docs for Boost::mutex clearly say "These are all thread-level mutexes; interprocess mutexes are not supported". – Kylotan Jul 8 at 16:23
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.