forked from zeromq/libzmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththread.cpp
384 lines (327 loc) · 9.89 KB
/
thread.cpp
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/* SPDX-License-Identifier: MPL-2.0 */
#include "precompiled.hpp"
#include "macros.hpp"
#include "thread.hpp"
#include "err.hpp"
#ifdef ZMQ_HAVE_WINDOWS
#include <winnt.h>
#endif
#ifdef __MINGW32__
#include "pthread.h"
#endif
bool zmq::thread_t::get_started () const
{
return _started;
}
#ifdef ZMQ_HAVE_WINDOWS
extern "C" {
#if defined _WIN32_WCE
static DWORD thread_routine (LPVOID arg_)
#else
static unsigned int __stdcall thread_routine (void *arg_)
#endif
{
zmq::thread_t *self = static_cast<zmq::thread_t *> (arg_);
self->applyThreadName ();
self->_tfn (self->_arg);
return 0;
}
}
void zmq::thread_t::start (thread_fn *tfn_, void *arg_, const char *name_)
{
_tfn = tfn_;
_arg = arg_;
if (name_)
strncpy (_name, name_, sizeof (_name) - 1);
// set default stack size to 4MB to avoid std::map stack overflow on x64
unsigned int stack = 0;
#if defined _WIN64
stack = 0x400000;
#endif
#if defined _WIN32_WCE
_descriptor = (HANDLE) CreateThread (NULL, stack, &::thread_routine, this,
0, &_thread_id);
#else
_descriptor = (HANDLE) _beginthreadex (NULL, stack, &::thread_routine, this,
0, &_thread_id);
#endif
win_assert (_descriptor != NULL);
_started = true;
}
bool zmq::thread_t::is_current_thread () const
{
return GetCurrentThreadId () == _thread_id;
}
void zmq::thread_t::stop ()
{
if (_started) {
const DWORD rc = WaitForSingleObject (_descriptor, INFINITE);
win_assert (rc != WAIT_FAILED);
const BOOL rc2 = CloseHandle (_descriptor);
win_assert (rc2 != 0);
}
}
void zmq::thread_t::setSchedulingParameters (
int priority_, int scheduling_policy_, const std::set<int> &affinity_cpus_)
{
// not implemented
LIBZMQ_UNUSED (priority_);
LIBZMQ_UNUSED (scheduling_policy_);
LIBZMQ_UNUSED (affinity_cpus_);
}
void zmq::thread_t::
applySchedulingParameters () // to be called in secondary thread context
{
// not implemented
}
#ifdef _MSC_VER
namespace
{
#pragma pack(push, 8)
struct thread_info_t
{
DWORD _type;
LPCSTR _name;
DWORD _thread_id;
DWORD _flags;
};
#pragma pack(pop)
}
#endif
void zmq::thread_t::
applyThreadName () // to be called in secondary thread context
{
if (!_name[0] || !IsDebuggerPresent ())
return;
#ifdef _MSC_VER
thread_info_t thread_info;
thread_info._type = 0x1000;
thread_info._name = _name;
thread_info._thread_id = -1;
thread_info._flags = 0;
__try {
const DWORD MS_VC_EXCEPTION = 0x406D1388;
RaiseException (MS_VC_EXCEPTION, 0,
sizeof (thread_info) / sizeof (ULONG_PTR),
(ULONG_PTR *) &thread_info);
}
__except (EXCEPTION_CONTINUE_EXECUTION) {
}
#elif defined(__MINGW32__)
int rc = pthread_setname_np (pthread_self (), _name);
if (rc)
return;
#else
// not implemented
#endif
}
#elif defined ZMQ_HAVE_VXWORKS
extern "C" {
static void *thread_routine (void *arg_)
{
zmq::thread_t *self = (zmq::thread_t *) arg_;
self->applySchedulingParameters ();
self->_tfn (self->_arg);
return NULL;
}
}
void zmq::thread_t::start (thread_fn *tfn_, void *arg_, const char *name_)
{
LIBZMQ_UNUSED (name_);
_tfn = tfn_;
_arg = arg_;
_descriptor = taskSpawn (NULL, DEFAULT_PRIORITY, DEFAULT_OPTIONS,
DEFAULT_STACK_SIZE, (FUNCPTR) thread_routine,
(int) this, 0, 0, 0, 0, 0, 0, 0, 0, 0);
if (_descriptor != NULL || _descriptor > 0)
_started = true;
}
void zmq::thread_t::stop ()
{
if (_started)
while ((_descriptor != NULL || _descriptor > 0)
&& taskIdVerify (_descriptor) == 0) {
}
}
bool zmq::thread_t::is_current_thread () const
{
return taskIdSelf () == _descriptor;
}
void zmq::thread_t::setSchedulingParameters (
int priority_, int schedulingPolicy_, const std::set<int> &affinity_cpus_)
{
_thread_priority = priority_;
_thread_sched_policy = schedulingPolicy_;
_thread_affinity_cpus = affinity_cpus_;
}
void zmq::thread_t::
applySchedulingParameters () // to be called in secondary thread context
{
int priority =
(_thread_priority >= 0 ? _thread_priority : DEFAULT_PRIORITY);
priority = (priority < UCHAR_MAX ? priority : DEFAULT_PRIORITY);
if (_descriptor != NULL || _descriptor > 0) {
taskPrioritySet (_descriptor, priority);
}
}
void zmq::thread_t::
applyThreadName () // to be called in secondary thread context
{
// not implemented
}
#else
#include <signal.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/resource.h>
extern "C" {
static void *thread_routine (void *arg_)
{
#if !defined ZMQ_HAVE_OPENVMS && !defined ZMQ_HAVE_ANDROID
// Following code will guarantee more predictable latencies as it'll
// disallow any signal handling in the I/O thread.
sigset_t signal_set;
int rc = sigfillset (&signal_set);
errno_assert (rc == 0);
rc = pthread_sigmask (SIG_BLOCK, &signal_set, NULL);
posix_assert (rc);
#endif
zmq::thread_t *self = (zmq::thread_t *) arg_;
self->applySchedulingParameters ();
self->applyThreadName ();
self->_tfn (self->_arg);
return NULL;
}
}
void zmq::thread_t::start (thread_fn *tfn_, void *arg_, const char *name_)
{
_tfn = tfn_;
_arg = arg_;
if (name_)
strncpy (_name, name_, sizeof (_name) - 1);
int rc = pthread_create (&_descriptor, NULL, thread_routine, this);
posix_assert (rc);
_started = true;
}
void zmq::thread_t::stop ()
{
if (_started) {
int rc = pthread_join (_descriptor, NULL);
posix_assert (rc);
}
}
bool zmq::thread_t::is_current_thread () const
{
return bool (pthread_equal (pthread_self (), _descriptor));
}
void zmq::thread_t::setSchedulingParameters (
int priority_, int scheduling_policy_, const std::set<int> &affinity_cpus_)
{
_thread_priority = priority_;
_thread_sched_policy = scheduling_policy_;
_thread_affinity_cpus = affinity_cpus_;
}
void zmq::thread_t::
applySchedulingParameters () // to be called in secondary thread context
{
#if defined _POSIX_THREAD_PRIORITY_SCHEDULING \
&& _POSIX_THREAD_PRIORITY_SCHEDULING >= 0
int policy = 0;
struct sched_param param;
#if _POSIX_THREAD_PRIORITY_SCHEDULING == 0 \
&& defined _SC_THREAD_PRIORITY_SCHEDULING
if (sysconf (_SC_THREAD_PRIORITY_SCHEDULING) < 0) {
return;
}
#endif
int rc = pthread_getschedparam (pthread_self (), &policy, ¶m);
posix_assert (rc);
if (_thread_sched_policy != ZMQ_THREAD_SCHED_POLICY_DFLT) {
policy = _thread_sched_policy;
}
/* Quoting docs:
"Linux allows the static priority range 1 to 99 for the SCHED_FIFO and
SCHED_RR policies, and the priority 0 for the remaining policies."
Other policies may use the "nice value" in place of the priority:
*/
bool use_nice_instead_priority =
(policy != SCHED_FIFO) && (policy != SCHED_RR);
if (use_nice_instead_priority)
param.sched_priority =
0; // this is the only supported priority for most scheduling policies
else if (_thread_priority != ZMQ_THREAD_PRIORITY_DFLT)
param.sched_priority =
_thread_priority; // user should provide a value between 1 and 99
#ifdef __NetBSD__
if (policy == SCHED_OTHER)
param.sched_priority = -1;
#endif
rc = pthread_setschedparam (pthread_self (), policy, ¶m);
#if defined(__FreeBSD_kernel__) || defined(__FreeBSD__)
// If this feature is unavailable at run-time, don't abort.
if (rc == ENOSYS)
return;
#endif
posix_assert (rc);
#if !defined ZMQ_HAVE_VXWORKS
if (use_nice_instead_priority
&& _thread_priority != ZMQ_THREAD_PRIORITY_DFLT
&& _thread_priority > 0) {
// assume the user wants to decrease the thread's nice value
// i.e., increase the chance of this thread being scheduled: try setting that to
// maximum priority.
rc = nice (-20);
errno_assert (rc != -1);
// IMPORTANT: EPERM is typically returned for unprivileged processes: that's because
// CAP_SYS_NICE capability is required or RLIMIT_NICE resource limit should be changed to avoid EPERM!
}
#endif
#ifdef ZMQ_HAVE_PTHREAD_SET_AFFINITY
if (!_thread_affinity_cpus.empty ()) {
cpu_set_t cpuset;
CPU_ZERO (&cpuset);
for (std::set<int>::const_iterator it = _thread_affinity_cpus.begin (),
end = _thread_affinity_cpus.end ();
it != end; it++) {
CPU_SET ((int) (*it), &cpuset);
}
rc =
pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
posix_assert (rc);
}
#endif
#endif
}
void zmq::thread_t::
applyThreadName () // to be called in secondary thread context
{
/* The thread name is a cosmetic string, added to ease debugging of
* multi-threaded applications. It is not a big issue if this value
* can not be set for any reason (such as Permission denied in some
* cases where the application changes its EUID, etc.) The value of
* "int rc" is retained where available, to help debuggers stepping
* through code to see its value - but otherwise it is ignored.
*/
if (!_name[0])
return;
/* Fails with permission denied on Android 5/6 */
#if defined(ZMQ_HAVE_ANDROID)
return;
#endif
#if defined(ZMQ_HAVE_PTHREAD_SETNAME_1)
int rc = pthread_setname_np (_name);
if (rc)
return;
#elif defined(ZMQ_HAVE_PTHREAD_SETNAME_2)
int rc = pthread_setname_np (pthread_self (), _name);
if (rc)
return;
#elif defined(ZMQ_HAVE_PTHREAD_SETNAME_3)
int rc = pthread_setname_np (pthread_self (), _name, NULL);
if (rc)
return;
#elif defined(ZMQ_HAVE_PTHREAD_SET_NAME)
pthread_set_name_np (pthread_self (), _name);
#endif
}
#endif