diff options
author | omakovski <omakovski@yandex-team.ru> | 2022-02-10 16:49:30 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:30 +0300 |
commit | 5feb3b4d96aaa42ce546426241c48d626e6d6685 (patch) | |
tree | 728359f39c2eeab2b894f3d8664ea1499ffde216 /util/system/thread.cpp | |
parent | 077ab504815199e62ffc54daee873cf1d6b64297 (diff) | |
download | ydb-5feb3b4d96aaa42ce546426241c48d626e6d6685.tar.gz |
Restoring authorship annotation for <omakovski@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..34bdb39384 100644 --- a/util/system/thread.cpp +++ b/util/system/thread.cpp @@ -207,7 +207,7 @@ namespace { TParams* holdP = P_.Release(); int err = pthread_create(&H_, pattrs, ThreadProxy, holdP); if (err) { - H_ = {}; + H_ = {}; P_.Reset(holdP); PCHECK(err, "failed to create thread"); } |