lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
concurrent.h
00001 /*****************************************************/
00002 /* lean Concurrent              (c) Tobias Zirr 2011 */
00003 /*****************************************************/
00004 
00005 #ifndef LEAN_CONCURRENT_CONCURRENT
00006 #define LEAN_CONCURRENT_CONCURRENT
00007 
00008 namespace lean
00009 {
00011     namespace concurrent { }
00012 }
00013 
00014 #include "atomic.h"
00015 
00016 #include "spin_lock.h"
00017 #include "shareable_spin_lock.h"
00018 
00019 #include "shareable_lock_policies.h"
00020 
00021 #endif