liuxiaolong
2021-07-20 58d904a328c0d849769b483e901a0be9426b8209
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#ifndef BOOST_SMART_PTR_DETAIL_LIGHTWEIGHT_THREAD_HPP_INCLUDED
#define BOOST_SMART_PTR_DETAIL_LIGHTWEIGHT_THREAD_HPP_INCLUDED
 
// MS compatible compilers support #pragma once
 
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
 
//  boost/detail/lightweight_thread.hpp
//
//  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
//  Copyright (c) 2008, 2018 Peter Dimov
//
//  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
//
//
//  typedef /*...*/ lw_thread_t; // as pthread_t
//  template<class F> int lw_thread_create( lw_thread_t & th, F f );
//  void lw_thread_join( lw_thread_t th );
 
 
#include <boost/config.hpp>
#include <memory>
#include <cerrno>
 
#if defined( BOOST_HAS_PTHREADS )
 
#include <pthread.h>
 
namespace boost
{
namespace detail
{
 
typedef ::pthread_t lw_thread_t;
 
inline int lw_thread_create_( lw_thread_t* thread, const pthread_attr_t* attr, void* (*start_routine)( void* ), void* arg )
{
    return ::pthread_create( thread, attr, start_routine, arg );
}
 
inline void lw_thread_join( lw_thread_t th )
{
    ::pthread_join( th, 0 );
}
 
} // namespace detail
} // namespace boost
 
#else // defined( BOOST_HAS_PTHREADS )
 
#include <windows.h>
#include <process.h>
 
namespace boost
{
namespace detail
{
 
typedef HANDLE lw_thread_t;
 
inline int lw_thread_create_( lw_thread_t * thread, void const *, unsigned (__stdcall * start_routine) (void*), void* arg )
{
    HANDLE h = (HANDLE)_beginthreadex( 0, 0, start_routine, arg, 0, 0 );
 
    if( h != 0 )
    {
        *thread = h;
        return 0;
    }
    else
    {
        return EAGAIN;
    }
}
 
inline void lw_thread_join( lw_thread_t thread )
{
    ::WaitForSingleObject( thread, INFINITE );
    ::CloseHandle( thread );
}
 
} // namespace detail
} // namespace boost
 
#endif // defined( BOOST_HAS_PTHREADS )
 
 
namespace boost
{
namespace detail
{
 
class lw_abstract_thread
{
public:
 
    virtual ~lw_abstract_thread() {}
    virtual void run() = 0;
};
 
#if defined( BOOST_HAS_PTHREADS )
 
extern "C" void * lw_thread_routine( void * pv )
{
#if defined(BOOST_NO_CXX11_SMART_PTR)
 
    std::auto_ptr<lw_abstract_thread> pt( static_cast<lw_abstract_thread *>( pv ) );
 
#else
 
    std::unique_ptr<lw_abstract_thread> pt( static_cast<lw_abstract_thread *>( pv ) );
 
#endif
 
    pt->run();
 
    return 0;
}
 
#else
 
unsigned __stdcall lw_thread_routine( void * pv )
{
#if defined(BOOST_NO_CXX11_SMART_PTR)
 
    std::auto_ptr<lw_abstract_thread> pt( static_cast<lw_abstract_thread *>( pv ) );
 
#else
 
    std::unique_ptr<lw_abstract_thread> pt( static_cast<lw_abstract_thread *>( pv ) );
 
#endif
 
    pt->run();
 
    return 0;
}
 
#endif
 
template<class F> class lw_thread_impl: public lw_abstract_thread
{
public:
 
    explicit lw_thread_impl( F f ): f_( f )
    {
    }
 
    void run()
    {
        f_();
    }
 
private:
 
    F f_;
};
 
template<class F> int lw_thread_create( lw_thread_t & th, F f )
{
#if defined(BOOST_NO_CXX11_SMART_PTR)
 
    std::auto_ptr<lw_abstract_thread> p( new lw_thread_impl<F>( f ) );
 
#else
 
    std::unique_ptr<lw_abstract_thread> p( new lw_thread_impl<F>( f ) );
 
#endif
 
    int r = lw_thread_create_( &th, 0, lw_thread_routine, p.get() );
 
    if( r == 0 )
    {
        p.release();
    }
 
    return r;
}
 
} // namespace detail
} // namespace boost
 
#endif // #ifndef BOOST_SMART_PTR_DETAIL_LIGHTWEIGHT_THREAD_HPP_INCLUDED