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
|
$NetBSD: patch-src_zm__thread.h,v 1.6 2022/09/27 01:20:39 gdt Exp $
Fix build with Clang.
pthread_t is opaque, and under NetBSD is a pointer. It's being abused here,
but the value is only used for logging, and casting pthread_self() is more
portable than syscall(SYS_gettid).
\todo Fix correctly upstream.
--- src/zm_thread.h.orig 2019-02-23 04:38:47.000000000 +1300
+++ src/zm_thread.h 2022-01-18 00:14:30.000000000 +1300
@@ -22,20 +22,21 @@
#include <unistd.h>
#include <pthread.h>
+#include <stdint.h>
#include <unistd.h>
-#ifdef HAVE_SYS_SYSCALL_H
-#include <sys/syscall.h>
-#endif // HAVE_SYS_SYSCALL_H
#include "zm_exception.h"
#include "zm_utils.h"
#ifdef __FreeBSD__
#include <sys/thr.h>
#endif
+/* Assume that because pthread.h was included, all systems have pthread.*/
+#define USE_PTHREAD
+
class ThreadException : public Exception
{
private:
-#ifndef SOLARIS
+#ifndef USE_PTHREAD
pid_t pid() {
pid_t tid;
#ifdef __FreeBSD__
@@ -55,7 +56,8 @@
pthread_t pid() { return( pthread_self() ); }
#endif
public:
- ThreadException( const std::string &message ) : Exception( stringtf( "(%d) "+message, (long int)pid() ) ) {
+ /* The type of pid() varies by OS */
+ ThreadException( const std::string &message ) : Exception( stringtf( ("(%jd) "+message).c_str(), (intmax_t)pid() ) ) {
}
};
@@ -217,7 +219,7 @@
Mutex mThreadMutex;
Condition mThreadCondition;
-#ifndef SOLARIS
+#ifndef USE_PTHREAD
pid_t mPid;
#else
pthread_t mPid;
@@ -230,7 +232,7 @@
Thread();
virtual ~Thread();
-#ifndef SOLARIS
+#ifndef USE_PTHREAD
pid_t id() const
{
pid_t tid;
@@ -269,7 +271,7 @@
void kill( int signal );
bool isThread()
{
- return( mPid > -1 && pthread_equal( pthread_self(), mThread ) );
+ return( /* mPid > -1 && */ pthread_equal( pthread_self(), mThread ) );
}
bool isStarted() const { return( mStarted ); }
bool isRunning() const { return( mRunning ); }
|