@@ -34,20 +34,34 @@ using namespace std;
34
34
35
35
SrsThreadMutex::SrsThreadMutex ()
36
36
{
37
+ // https://man7.org/linux/man-pages/man3/pthread_mutexattr_init.3.html
38
+ int r0 = pthread_mutexattr_init (&attr_);
39
+ srs_assert (!r0);
40
+
41
+ // https://man7.org/linux/man-pages/man3/pthread_mutexattr_gettype.3p.html
42
+ r0 = pthread_mutexattr_settype (&attr_, PTHREAD_MUTEX_ERRORCHECK);
43
+ srs_assert (!r0);
44
+
37
45
// https://michaelkerrisk.com/linux/man-pages/man3/pthread_mutex_init.3p.html
38
- int r0 = pthread_mutex_init (&lock_, NULL );
46
+ r0 = pthread_mutex_init (&lock_, &attr_ );
39
47
srs_assert (!r0);
40
48
}
41
49
42
50
SrsThreadMutex::~SrsThreadMutex ()
43
51
{
44
52
int r0 = pthread_mutex_destroy (&lock_);
45
53
srs_assert (!r0);
54
+
55
+ r0 = pthread_mutexattr_destroy (&attr_);
56
+ srs_assert (!r0);
46
57
}
47
58
48
59
void SrsThreadMutex::lock ()
49
60
{
50
61
// https://man7.org/linux/man-pages/man3/pthread_mutex_lock.3p.html
62
+ // EDEADLK
63
+ // The mutex type is PTHREAD_MUTEX_ERRORCHECK and the current
64
+ // thread already owns the mutex.
51
65
int r0 = pthread_mutex_lock (&lock_);
52
66
srs_assert (!r0);
53
67
}
@@ -68,6 +82,10 @@ SrsThreadEntry::SrsThreadEntry()
68
82
err = srs_success;
69
83
}
70
84
85
+ SrsThreadEntry::~SrsThreadEntry ()
86
+ {
87
+ }
88
+
71
89
SrsThreadPool::SrsThreadPool ()
72
90
{
73
91
entry_ = NULL ;
@@ -108,10 +126,9 @@ srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg)
108
126
{
109
127
srs_error_t err = srs_success;
110
128
111
- static int num = entry_->num + 1 ;
112
-
113
129
SrsThreadEntry* entry = new SrsThreadEntry ();
114
130
131
+ // To protect the threads_ for executing thread-safe.
115
132
if (true ) {
116
133
SrsThreadLocker (lock_);
117
134
threads_.push_back (entry);
@@ -121,13 +138,18 @@ srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg)
121
138
entry->label = label;
122
139
entry->start = start;
123
140
entry->arg = arg;
141
+
142
+ // The id of thread, should equal to the debugger thread id.
143
+ // For gdb, it's: info threads
144
+ // For lldb, it's: thread list
145
+ static int num = entry_->num + 1 ;
124
146
entry->num = num++;
125
147
126
148
// https://man7.org/linux/man-pages/man3/pthread_create.3.html
127
149
pthread_t trd;
128
150
int r0 = pthread_create (&trd, NULL , SrsThreadPool::start, entry);
129
151
if (r0 != 0 ) {
130
- entry->err = srs_error_new (ERROR_THREAD_CREATE, " create thread %s" , label.c_str ());
152
+ entry->err = srs_error_new (ERROR_THREAD_CREATE, " create thread %s, r0=%d " , label.c_str (), r0 );
131
153
return srs_error_copy (entry->err );
132
154
}
133
155
0 commit comments