Skip to content

Commit fa4c9f9

Browse files
committed
Threads: Set the threads name display in top.
1 parent 1c6e941 commit fa4c9f9

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

trunk/src/app/srs_app_rtc_server.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,7 @@ srs_error_t SrsRtcServer::on_timer(srs_utime_t interval, srs_utime_t tick)
699699
rnk_desc = buf;
700700
}
701701

702+
// TODO: FIXME: Should move to Hybrid server stat.
702703
string loss_desc;
703704
if (_srs_pps_rloss->r10s() || _srs_pps_sloss->r10s()) {
704705
snprintf(buf, sizeof(buf), ", loss=(r:%d,s:%d)", _srs_pps_rloss->r10s(), _srs_pps_sloss->r10s());

trunk/src/app/srs_app_threads.cpp

+20-4
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,11 @@ SrsThreadPool::SrsThreadPool()
110110
entry->start = NULL;
111111
entry->arg = NULL;
112112
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;
113118
}
114119

115120
// TODO: FIMXE: If free the pool, we should stop all threads.
@@ -129,8 +134,8 @@ srs_error_t SrsThreadPool::initialize()
129134

130135
interval_ = _srs_config->get_threads_interval();
131136
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);
134139

135140
return err;
136141
}
@@ -158,6 +163,10 @@ srs_error_t SrsThreadPool::execute(string label, srs_error_t (*start)(void* arg)
158163
static int num = entry_->num + 1;
159164
entry->num = num++;
160165

166+
char buf[256];
167+
snprintf(buf, sizeof(buf), "srs-%s-%d", entry->label.c_str(), entry->num);
168+
entry->name = buf;
169+
161170
// https://man7.org/linux/man-pages/man3/pthread_create.3.html
162171
pthread_t trd;
163172
int r0 = pthread_create(&trd, NULL, SrsThreadPool::start, entry);
@@ -205,7 +214,7 @@ srs_error_t SrsThreadPool::run()
205214
sync_desc = buf;
206215
}
207216

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(),
209218
async_logs.c_str(), sync_desc.c_str());
210219
}
211220

@@ -222,7 +231,14 @@ void* SrsThreadPool::start(void* arg)
222231
srs_error_t err = srs_success;
223232

224233
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());
226242

227243
if ((err = entry->start(entry->arg)) != srs_success) {
228244
entry->err = err;

trunk/src/app/srs_app_threads.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ class SrsThreadEntry
8080
public:
8181
SrsThreadPool* pool;
8282
std::string label;
83+
std::string name;
8384
srs_error_t (*start)(void* arg);
8485
void* arg;
8586
int num;

0 commit comments

Comments
 (0)