diff options
author | sibiryakov <[email protected]> | 2022-02-10 16:49:33 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:33 +0300 |
commit | 7fa2bc85438d6a40801444b0def15f9e76a44034 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/system/condvar.cpp | |
parent | 413709c9be39070df9cbd14ef3ec098591346ebd (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/system/condvar.cpp')
-rw-r--r-- | util/system/condvar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/condvar.cpp b/util/system/condvar.cpp index 77deb8daa4f..62f3d22356c 100644 --- a/util/system/condvar.cpp +++ b/util/system/condvar.cpp @@ -110,7 +110,7 @@ public: spec.tv_nsec = deadLine.NanoSecondsOfSecond(); int ret = pthread_cond_timedwait(&Cond_, (pthread_mutex_t*)lock.Handle(), &spec); - + Y_VERIFY(ret == 0 || ret == ETIMEDOUT, "pthread_cond_timedwait failed: %s", LastSystemErrorText(ret)); return ret == 0; |