summaryrefslogtreecommitdiffstats
path: root/util/system/thread.cpp
diff options
context:
space:
mode:
authorf0b0s <[email protected]>2022-02-10 16:46:51 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:51 +0300
commitcdae02d225fb5b3afbb28990e79a7ac6c9125327 (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /util/system/thread.cpp
parentdeabc5260ac2e17b8f5152ee060bec1740613540 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/system/thread.cpp')
-rw-r--r--util/system/thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/thread.cpp b/util/system/thread.cpp
index 3251c6e2e5f..6236746c2d9 100644
--- a/util/system/thread.cpp
+++ b/util/system/thread.cpp
@@ -450,7 +450,7 @@ void TThread::SetCurrentThreadName(const char* name) {
#if defined(_freebsd_)
pthread_t thread = pthread_self();
- pthread_set_name_np(thread, name);
+ pthread_set_name_np(thread, name);
#elif defined(_linux_)
prctl(PR_SET_NAME, name, 0, 0, 0);
#elif defined(_darwin_)