diff options
author | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-17 08:13:09 +0300 |
---|---|---|
committer | ilnurkh <ilnurkh@yandex-team.com> | 2023-10-17 08:37:35 +0300 |
commit | 0e978a7806dcbea4612c1749c98a5ebdb6e16539 (patch) | |
tree | 499d2649b73b9075bca099fea95239b23ff27db7 /util/system | |
parent | 7d562632b151b2e9b50b102d67cf3bd9909e932c (diff) | |
download | ydb-0e978a7806dcbea4612c1749c98a5ebdb6e16539.tar.gz |
Y_FAIL->Y_ABORT at '^util'
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'util/system')
-rw-r--r-- | util/system/mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/mutex.cpp b/util/system/mutex.cpp index 2850c6347b7..66f9a15f294 100644 --- a/util/system/mutex.cpp +++ b/util/system/mutex.cpp @@ -95,7 +95,7 @@ public: if (result == 0 || result == EBUSY) { return result == 0; } - Y_FAIL("mutex trylock failure (%s)", LastSystemErrorText(result)); + Y_ABORT("mutex trylock failure (%s)", LastSystemErrorText(result)); #endif } |