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 | cdae02d225fb5b3afbb28990e79a7ac6c9125327 (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /util/system/thread.cpp | |
parent | deabc5260ac2e17b8f5152ee060bec1740613540 (diff) | |
download | ydb-cdae02d225fb5b3afbb28990e79a7ac6c9125327.tar.gz |
Restoring authorship annotation for <f0b0s@yandex-team.ru>. Commit 2 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 3251c6e2e5..6236746c2d 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_) |