| 
									
										
										
										
											2002-02-16 14:34:34 +00:00
										 |  |  | #ifndef BOOST_DETAIL_LWM_LINUX_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_DETAIL_LWM_LINUX_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  boost/detail/lwm_linux.hpp
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2004-07-26 00:32:12 +00:00
										 |  |  | // Distributed under the Boost Software License, Version 1.0. (See
 | 
					
						
							|  |  |  | // accompanying file LICENSE_1_0.txt or copy at
 | 
					
						
							|  |  |  | // http://www.boost.org/LICENSE_1_0.txt)
 | 
					
						
							| 
									
										
										
										
											2002-02-16 14:34:34 +00:00
										 |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-01 16:17:08 +00:00
										 |  |  | //
 | 
					
						
							|  |  |  | //  This implementation uses <asm/atomic.h>. This is a kernel header;
 | 
					
						
							|  |  |  | //  using kernel headers in a user program may cause a number of problems,
 | 
					
						
							|  |  |  | //  and not all flavors of Linux provide the atomic instructions.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  This file is only provided because the performance of this implementation
 | 
					
						
							|  |  |  | //  is about 3.5 times higher than the pthreads version. Use at your own risk
 | 
					
						
							|  |  |  | //  (by defining BOOST_USE_ASM_ATOMIC_H.)
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-16 14:34:34 +00:00
										 |  |  | #include <asm/atomic.h>
 | 
					
						
							| 
									
										
										
										
											2002-02-16 15:00:55 +00:00
										 |  |  | #include <sched.h>
 | 
					
						
							| 
									
										
										
										
											2002-02-16 14:34:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace boost | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace detail | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class lightweight_mutex | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     atomic_t a_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     lightweight_mutex(lightweight_mutex const &); | 
					
						
							|  |  |  |     lightweight_mutex & operator=(lightweight_mutex const &); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     lightweight_mutex() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         atomic_t a = ATOMIC_INIT(1); | 
					
						
							|  |  |  |         a_ = a; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class scoped_lock; | 
					
						
							|  |  |  |     friend class scoped_lock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class scoped_lock | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         lightweight_mutex & m_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         scoped_lock(scoped_lock const &); | 
					
						
							|  |  |  |         scoped_lock & operator=(scoped_lock const &); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         explicit scoped_lock(lightweight_mutex & m): m_(m) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             while( !atomic_dec_and_test(&m_.a_) ) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 atomic_inc(&m_.a_); | 
					
						
							| 
									
										
										
										
											2002-02-16 15:00:55 +00:00
										 |  |  |                 sched_yield(); | 
					
						
							| 
									
										
										
										
											2002-02-16 14:34:34 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ~scoped_lock() | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             atomic_inc(&m_.a_); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace detail
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace boost
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-21 16:48:20 +00:00
										 |  |  | #endif // #ifndef BOOST_DETAIL_LWM_LINUX_HPP_INCLUDED
 |