0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/util/concurrency
2011-01-08 15:01:04 -05:00
..
list.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
msg.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
mutex.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
mvar.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
race.h compile 2011-01-08 15:01:04 -05:00
README dur getlasterror wait for group commit via fsync:1 2010-12-13 00:21:08 -05:00
rwlock.h merge 2011-01-05 00:44:06 -05:00
shared_mutex_win.hpp merge 2011-01-05 00:44:06 -05:00
spin_lock.cpp ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
spin_lock.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
synchronization.cpp ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
synchronization.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
task.cpp ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
task.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
thread_pool.cpp ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
thread_pool.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
value.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
vars.cpp ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00

util/concurrency/ files

list.h - a list class that is lock-free for reads
rwlock.h - read/write locks (RWLock)
msg.h - message passing between threads
task.h - an abstraction around threads
mutex.h - small enhancements that wrap boost::mutex
mvar.h
 This is based on haskell's MVar synchronization primitive:
 http://www.haskell.org/ghc/docs/latest/html/libraries/base-4.2.0.0/Control-Concurrent-MVar.html
 It is a thread-safe queue that can hold at most one object.
 You can also think of it as a box that can be either full or empty.
value.h
 Atomic wrapper for values/objects that are copy constructable / assignable
thread_pool.h 
spinlock.h
synchronization.h 
 A class to establish a sinchronization point between two threads. One thread is the waiter and one 
 is the notifier. After the notification event, both proceed normally.