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 | ef985e41af0868676d7a2275f1d90261253ddf3b (patch) | |
tree | 3a6a11d19d8c39c7b90c132bce7e1c3536be37c1 /util/system/context.cpp | |
parent | 8387f1fb70a4161b7581d3c0da52c4810df655be (diff) | |
download | ydb-ef985e41af0868676d7a2275f1d90261253ddf3b.tar.gz |
Restoring authorship annotation for <pyos@yandex-team.ru>. Commit 1 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 ad993090884..bea1976a1ea 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 { |