diff options
author | f0b0s <f0b0s@yandex-team.ru> | 2022-02-10 16:46:51 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:51 +0300 |
commit | deabc5260ac2e17b8f5152ee060bec1740613540 (patch) | |
tree | bc498b2fe3c447d13c2abea85b429fee8dd485ef /util/system/thread.cpp | |
parent | 2e6009493e74f88988b81f219b301f450331648d (diff) | |
download | ydb-deabc5260ac2e17b8f5152ee060bec1740613540.tar.gz |
Restoring authorship annotation for <f0b0s@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/system/thread.cpp')
-rw-r--r-- | util/system/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/thread.cpp b/util/system/thread.cpp index 6236746c2d..3251c6e2e5 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_) |