@@ -110,6 +110,11 @@ SrsThreadPool::SrsThreadPool()
110
110
entry->start = NULL ;
111
111
entry->arg = NULL ;
112
112
entry->num = 1 ;
113
+ entry->trd = pthread_self ();
114
+
115
+ char buf[256 ];
116
+ snprintf (buf, sizeof (buf), " srs-master-%d" , entry->num );
117
+ entry->name = buf;
113
118
}
114
119
115
120
// TODO: FIMXE: If free the pool, we should stop all threads.
@@ -129,8 +134,8 @@ srs_error_t SrsThreadPool::initialize()
129
134
130
135
interval_ = _srs_config->get_threads_interval ();
131
136
bool async_srtp = _srs_config->get_threads_async_srtp ();
132
- srs_trace (" Thread #%d(%s): init interval=%dms, async_srtp=%d" ,
133
- entry_->num , entry_->label .c_str (), srsu2msi (interval_), async_srtp);
137
+ srs_trace (" Thread #%d(%s): init name=%s, interval=%dms, async_srtp=%d" ,
138
+ entry_->num , entry_->label .c_str (), entry_-> name . c_str (), srsu2msi (interval_), async_srtp);
134
139
135
140
return err;
136
141
}
@@ -158,6 +163,10 @@ srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg)
158
163
static int num = entry_->num + 1 ;
159
164
entry->num = num++;
160
165
166
+ char buf[256 ];
167
+ snprintf (buf, sizeof (buf), " srs-%s-%d" , entry->label .c_str (), entry->num );
168
+ entry->name = buf;
169
+
161
170
// https://man7.org/linux/man-pages/man3/pthread_create.3.html
162
171
pthread_t trd;
163
172
int r0 = pthread_create (&trd, NULL , SrsThreadPool::start, entry);
@@ -205,7 +214,7 @@ srs_error_t SrsThreadPool::run()
205
214
sync_desc = buf;
206
215
}
207
216
208
- srs_trace (" Thread: cycle threads=%d%s%s" , (int )threads_.size (),
217
+ srs_trace (" Thread: %s cycle threads=%d%s%s" , entry_-> name . c_str () , (int )threads_.size (),
209
218
async_logs.c_str (), sync_desc.c_str ());
210
219
}
211
220
@@ -222,7 +231,14 @@ void* SrsThreadPool::start(void* arg)
222
231
srs_error_t err = srs_success;
223
232
224
233
SrsThreadEntry* entry = (SrsThreadEntry*)arg;
225
- srs_trace (" Thread #%d(%s): run" , entry->num , entry->label .c_str ());
234
+
235
+ #ifndef SRS_OSX
236
+ // https://man7.org/linux/man-pages/man3/pthread_setname_np.3.html
237
+ pthread_setname_np (entry->trd , entry->name .c_str ());
238
+ #endif
239
+
240
+ srs_trace (" Thread #%d: run with label=%s, name=%s" , entry->num ,
241
+ entry->label .c_str (), entry->name .c_str ());
226
242
227
243
if ((err = entry->start (entry->arg )) != srs_success) {
228
244
entry->err = err;
0 commit comments