diff options
author | pyos <pyos@yandex-team.ru> | 2022-02-10 16:47:49 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:49 +0300 |
commit | b031b9d140bcd39f4ef2764e24d37bee317aaf23 (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /util/system/context.cpp | |
parent | ef985e41af0868676d7a2275f1d90261253ddf3b (diff) | |
download | ydb-b031b9d140bcd39f4ef2764e24d37bee317aaf23.tar.gz |
Restoring authorship annotation for <pyos@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/context.cpp')
-rw-r--r-- | util/system/context.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/system/context.cpp b/util/system/context.cpp index bea1976a1ea..ad993090884 100644 --- a/util/system/context.cpp +++ b/util/system/context.cpp @@ -110,10 +110,10 @@ namespace { return JmpBufReg(buf, PROGR_CNT); } - static inline void*& JmpBufFrameReg(__myjmp_buf& buf) noexcept { - return JmpBufReg(buf, FRAME_CNT); - } - + static inline void*& JmpBufFrameReg(__myjmp_buf& buf) noexcept { + return JmpBufReg(buf, FRAME_CNT); + } + #if defined(_x86_64_) // not sure if Y_NO_SANITIZE is needed Y_NO_SANITIZE("address") @@ -191,7 +191,7 @@ TContMachineContext::TContMachineContext(const TContClosure& c) JmpBufProgrReg(Buf_) = reinterpret_cast<void*>(ContextTrampoLine); JmpBufStackReg(Buf_) = stack.StackPtr(); - JmpBufFrameReg(Buf_) = nullptr; + JmpBufFrameReg(Buf_) = nullptr; } void TContMachineContext::SwitchTo(TContMachineContext* next) noexcept { |