diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-10 04:35:12 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-10 04:35:12 +0300 |
commit | b62983df1309f8f2418ce4dfd289fe28cc3f3103 (patch) | |
tree | 475903408abaf7cb7d77ccd3736ef9a773b6ed90 /library/cpp/messagebus | |
parent | f35aa2aefb0a56444fb1de8ccf4cb3da7117c31e (diff) | |
download | ydb-b62983df1309f8f2418ce4dfd289fe28cc3f3103.tar.gz |
intermediate changes
ref:737aa123095c71808f1dcf45b0d817cc4920fe97
Diffstat (limited to 'library/cpp/messagebus')
-rw-r--r-- | library/cpp/messagebus/actor/ring_buffer_with_spin_lock.h | 2 | ||||
-rw-r--r-- | library/cpp/messagebus/event_loop.cpp | 2 | ||||
-rw-r--r-- | library/cpp/messagebus/latch.h | 2 | ||||
-rw-r--r-- | library/cpp/messagebus/remote_server_session_semaphore.h | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/library/cpp/messagebus/actor/ring_buffer_with_spin_lock.h b/library/cpp/messagebus/actor/ring_buffer_with_spin_lock.h index f0b7cd90e4..3d11775ec3 100644 --- a/library/cpp/messagebus/actor/ring_buffer_with_spin_lock.h +++ b/library/cpp/messagebus/actor/ring_buffer_with_spin_lock.h @@ -2,6 +2,8 @@ #include "ring_buffer.h" +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/system/spinlock.h> template <typename T> diff --git a/library/cpp/messagebus/event_loop.cpp b/library/cpp/messagebus/event_loop.cpp index f685135bed..4240a5cd96 100644 --- a/library/cpp/messagebus/event_loop.cpp +++ b/library/cpp/messagebus/event_loop.cpp @@ -3,6 +3,8 @@ #include "network.h" #include "thread_extra.h" +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/generic/hash.h> #include <util/network/pair.h> #include <util/network/poller.h> diff --git a/library/cpp/messagebus/latch.h b/library/cpp/messagebus/latch.h index 373f4c0e13..b519e5509c 100644 --- a/library/cpp/messagebus/latch.h +++ b/library/cpp/messagebus/latch.h @@ -1,5 +1,7 @@ #pragma once +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/system/condvar.h> #include <util/system/mutex.h> diff --git a/library/cpp/messagebus/remote_server_session_semaphore.h b/library/cpp/messagebus/remote_server_session_semaphore.h index de714fd342..b1edf55cd6 100644 --- a/library/cpp/messagebus/remote_server_session_semaphore.h +++ b/library/cpp/messagebus/remote_server_session_semaphore.h @@ -2,6 +2,8 @@ #include "cc_semaphore.h" +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/generic/noncopyable.h> namespace NBus { |