Skip to content

Commit 80d1ae9

Browse files
Add support for thread names
1 parent d3938a7 commit 80d1ae9

8 files changed

+50
-8
lines changed

src/impl/dtlstransport.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include <functional>
2020
#include <memory>
2121
#include <mutex>
22-
#include <thread>
2322

2423
namespace rtc::impl {
2524

src/impl/init.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
*/
88

99
#include "init.hpp"
10-
#include "internals.hpp"
11-
1210
#include "certificate.hpp"
1311
#include "dtlstransport.hpp"
1412
#include "icetransport.hpp"
13+
#include "internals.hpp"
1514
#include "pollservice.hpp"
1615
#include "sctptransport.hpp"
1716
#include "threadpool.hpp"
1817
#include "tls.hpp"
18+
#include "utils.hpp"
1919

2020
#if RTC_ENABLE_WEBSOCKET
2121
#include "tlstransport.hpp"
@@ -43,6 +43,7 @@ struct Init::TokenPayload {
4343
~TokenPayload() {
4444
std::thread t(
4545
[](std::promise<void> promise) {
46+
utils::this_thread::set_name("RTC cleanup");
4647
try {
4748
Init::Instance().doCleanup();
4849
promise.set_value();

src/impl/peerconnection.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
#include "peerconnection.hpp"
1111
#include "certificate.hpp"
12-
#include "common.hpp"
1312
#include "dtlstransport.hpp"
1413
#include "icetransport.hpp"
1514
#include "internals.hpp"
@@ -18,6 +17,7 @@
1817
#include "processor.hpp"
1918
#include "rtp.hpp"
2019
#include "sctptransport.hpp"
20+
#include "utils.hpp"
2121

2222
#if RTC_ENABLE_MEDIA
2323
#include "dtlssrtptransport.hpp"
@@ -1061,6 +1061,7 @@ void PeerConnection::processRemoteCandidate(Candidate candidate) {
10611061
if ((iceTransport = std::atomic_load(&mIceTransport))) {
10621062
weak_ptr<IceTransport> weakIceTransport{iceTransport};
10631063
std::thread t([weakIceTransport, candidate = std::move(candidate)]() mutable {
1064+
utils::this_thread::set_name("RTC resolver");
10641065
if (candidate.resolve(Candidate::ResolveMode::Lookup))
10651066
if (auto iceTransport = weakIceTransport.lock())
10661067
iceTransport->addRemoteCandidate(std::move(candidate));

src/impl/pollservice.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include "pollservice.hpp"
1010
#include "internals.hpp"
11+
#include "utils.hpp"
1112

1213
#if RTC_ENABLE_WEBSOCKET
1314

@@ -158,10 +159,11 @@ void PollService::process(std::vector<struct pollfd> &pfds) {
158159
}
159160

160161
void PollService::runLoop() {
162+
utils::this_thread::set_name("RTC poll");
163+
PLOG_DEBUG << "Poll service started";
164+
161165
try {
162-
PLOG_DEBUG << "Poll service started";
163166
assert(mSocks);
164-
165167
std::vector<struct pollfd> pfds;
166168
optional<clock::time_point> next;
167169
while (!mStopped) {

src/impl/threadpool.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
#include "threadpool.hpp"
10+
#include "utils.hpp"
1011

1112
namespace rtc::impl {
1213

@@ -54,6 +55,7 @@ void ThreadPool::clear() {
5455
}
5556

5657
void ThreadPool::run() {
58+
utils::this_thread::set_name("RTC worker");
5759
++mBusyWorkers;
5860
scope_guard guard([&]() { --mBusyWorkers; });
5961
while (runOne()) {

src/impl/utils.cpp

+31
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818
#include <sstream>
1919
#include <thread>
2020

21+
#if defined(__linux__)
22+
#include <sys/prctl.h> // for prctl(PR_SET_NAME)
23+
#endif
24+
#if defined(__FreeBSD__)
25+
#include <pthread_np.h> // for pthread_set_name_np
26+
#endif
27+
2128
namespace rtc::impl::utils {
2229

2330
using std::to_integer;
@@ -179,4 +186,28 @@ std::multimap<string, string> parseHttpHeaders(const std::list<string> &lines) {
179186
return headers;
180187
}
181188

189+
namespace {
190+
191+
void thread_set_name_self(const char *name) {
192+
#if defined(_WIN32)
193+
(void)name;
194+
#elif defined(__linux__)
195+
prctl(PR_SET_NAME, name);
196+
#elif defined(__APPLE__)
197+
pthread_setname_np(name);
198+
#elif defined(__FreeBSD__)
199+
pthread_set_name_np(pthread_self(), name);
200+
#else
201+
(void)name;
202+
#endif
203+
}
204+
205+
} // namespace
206+
207+
namespace this_thread {
208+
void set_name(const string &name) {
209+
thread_set_name_self(name.c_str());
210+
}
211+
}
212+
182213
} // namespace rtc::impl::utils

src/impl/utils.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ template <typename Generator = std::mt19937> auto random_bytes_engine() {
7070
return random_engine<char_independent_bits_engine, uint8_t>();
7171
}
7272

73+
namespace this_thread {
74+
void set_name(const string &name);
75+
}
76+
7377
} // namespace rtc::impl::utils
7478

7579
#endif

src/impl/websocketserver.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "common.hpp"
1313
#include "internals.hpp"
1414
#include "threadpool.hpp"
15+
#include "utils.hpp"
1516

1617
namespace rtc::impl {
1718

@@ -41,8 +42,8 @@ WebSocketServer::WebSocketServer(Configuration config_)
4142
}
4243
}
4344

44-
const char* bindAddress = nullptr;
45-
if(config.bindAddress){
45+
const char *bindAddress = nullptr;
46+
if (config.bindAddress) {
4647
bindAddress = config.bindAddress->c_str();
4748
}
4849
// Create TCP server
@@ -67,6 +68,7 @@ void WebSocketServer::stop() {
6768
}
6869

6970
void WebSocketServer::runLoop() {
71+
utils::this_thread::set_name("RTC server");
7072
PLOG_INFO << "Starting WebSocketServer";
7173

7274
try {

0 commit comments

Comments
 (0)