First public contribution.
1 #ifndef BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED
2 #define BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED
4 // MS compatible compilers support #pragma once
6 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
11 // boost/detail/lwm_pthreads.hpp
13 // Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
15 // Distributed under the Boost Software License, Version 1.0. (See
16 // accompanying file LICENSE_1_0.txt or copy at
17 // http://www.boost.org/LICENSE_1_0.txt)
28 class lightweight_mutex
34 lightweight_mutex(lightweight_mutex const &);
35 lightweight_mutex & operator=(lightweight_mutex const &);
42 // HPUX 10.20 / DCE has a nonstandard pthread_mutex_init
44 #if defined(__hpux) && defined(_DECTHREADS_)
45 pthread_mutex_init(&m_, pthread_mutexattr_default);
47 pthread_mutex_init(&m_, 0);
53 pthread_mutex_destroy(&m_);
57 friend class scoped_lock;
65 scoped_lock(scoped_lock const &);
66 scoped_lock & operator=(scoped_lock const &);
70 scoped_lock(lightweight_mutex & m): m_(m.m_)
72 pthread_mutex_lock(&m_);
77 pthread_mutex_unlock(&m_);
86 #endif // #ifndef BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED