Skip to content

Commit 0cea382

Browse files
committed
Threads-Log: Refine thread lock type to ERRORCHECK.
1. Set lock attribute type to PTHREAD_MUTEX_ERRORCHECK. 2. If dead lock, the pthread_mutex_lock return EDEADLK. 3. We assert fail if lock failed.
1 parent 668c9c1 commit 0cea382

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

trunk/src/app/srs_app_threads.cpp

+26-4
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,34 @@ using namespace std;
3434

3535
SrsThreadMutex::SrsThreadMutex()
3636
{
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+
3745
// 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_);
3947
srs_assert(!r0);
4048
}
4149

4250
SrsThreadMutex::~SrsThreadMutex()
4351
{
4452
int r0 = pthread_mutex_destroy(&lock_);
4553
srs_assert(!r0);
54+
55+
r0 = pthread_mutexattr_destroy(&attr_);
56+
srs_assert(!r0);
4657
}
4758

4859
void SrsThreadMutex::lock()
4960
{
5061
// 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.
5165
int r0 = pthread_mutex_lock(&lock_);
5266
srs_assert(!r0);
5367
}
@@ -68,6 +82,10 @@ SrsThreadEntry::SrsThreadEntry()
6882
err = srs_success;
6983
}
7084

85+
SrsThreadEntry::~SrsThreadEntry()
86+
{
87+
}
88+
7189
SrsThreadPool::SrsThreadPool()
7290
{
7391
entry_ = NULL;
@@ -108,10 +126,9 @@ srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg)
108126
{
109127
srs_error_t err = srs_success;
110128

111-
static int num = entry_->num + 1;
112-
113129
SrsThreadEntry* entry = new SrsThreadEntry();
114130

131+
// To protect the threads_ for executing thread-safe.
115132
if (true) {
116133
SrsThreadLocker(lock_);
117134
threads_.push_back(entry);
@@ -121,13 +138,18 @@ srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg)
121138
entry->label = label;
122139
entry->start = start;
123140
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;
124146
entry->num = num++;
125147

126148
// https://man7.org/linux/man-pages/man3/pthread_create.3.html
127149
pthread_t trd;
128150
int r0 = pthread_create(&trd, NULL, SrsThreadPool::start, entry);
129151
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);
131153
return srs_error_copy(entry->err);
132154
}
133155

trunk/src/app/srs_app_threads.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class SrsThreadMutex
3838
{
3939
private:
4040
pthread_mutex_t lock_;
41+
pthread_mutexattr_t attr_;
4142
public:
4243
SrsThreadMutex();
4344
virtual ~SrsThreadMutex();
@@ -78,8 +79,9 @@ class SrsThreadEntry
7879
pthread_t trd;
7980
// The exit error of thread.
8081
srs_error_t err;
81-
82+
public:
8283
SrsThreadEntry();
84+
virtual ~SrsThreadEntry();
8385
};
8486

8587
// Allocate a(or almost) fixed thread poll to execute tasks,

0 commit comments

Comments
 (0)