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 | |
parent | f35aa2aefb0a56444fb1de8ccf4cb3da7117c31e (diff) | |
download | ydb-b62983df1309f8f2418ce4dfd289fe28cc3f3103.tar.gz |
intermediate changes
ref:737aa123095c71808f1dcf45b0d817cc4920fe97
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/actors/dnscachelib/dnscache.h | 2 | ||||
-rw-r--r-- | library/cpp/bucket_quoter/bucket_quoter.h | 2 | ||||
-rw-r--r-- | library/cpp/execprofile/profile.cpp | 2 | ||||
-rw-r--r-- | library/cpp/grpc/client/grpc_client_low.h | 2 | ||||
-rw-r--r-- | library/cpp/lwtrace/rwspinlock.h | 2 | ||||
-rw-r--r-- | library/cpp/lwtrace/shuttle.h | 1 | ||||
-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 | ||||
-rw-r--r-- | library/cpp/threading/future/core/future.h | 2 | ||||
-rw-r--r-- | library/cpp/threading/task_scheduler/task_scheduler.h | 2 |
12 files changed, 23 insertions, 0 deletions
diff --git a/library/cpp/actors/dnscachelib/dnscache.h b/library/cpp/actors/dnscachelib/dnscache.h index bd9c792cbd..ac36e6ddc0 100644 --- a/library/cpp/actors/dnscachelib/dnscache.h +++ b/library/cpp/actors/dnscachelib/dnscache.h @@ -1,5 +1,7 @@ #pragma once +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/generic/map.h> #include <util/generic/vector.h> #include <util/network/address.h> diff --git a/library/cpp/bucket_quoter/bucket_quoter.h b/library/cpp/bucket_quoter/bucket_quoter.h index 3d92ef8450..f8396b7b7e 100644 --- a/library/cpp/bucket_quoter/bucket_quoter.h +++ b/library/cpp/bucket_quoter/bucket_quoter.h @@ -1,5 +1,7 @@ #pragma once +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/datetime/base.h> #include <util/system/mutex.h> #include <util/system/hp_timer.h> diff --git a/library/cpp/execprofile/profile.cpp b/library/cpp/execprofile/profile.cpp index d05de20203..52cf658ba2 100644 --- a/library/cpp/execprofile/profile.cpp +++ b/library/cpp/execprofile/profile.cpp @@ -14,6 +14,8 @@ #endif #include <dlfcn.h> +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/system/platform.h> #include <util/generic/hash.h> #include <util/generic/map.h> diff --git a/library/cpp/grpc/client/grpc_client_low.h b/library/cpp/grpc/client/grpc_client_low.h index ab0a0627be..bf0f8e0f9f 100644 --- a/library/cpp/grpc/client/grpc_client_low.h +++ b/library/cpp/grpc/client/grpc_client_low.h @@ -2,6 +2,8 @@ #include "grpc_common.h" +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/thread/factory.h> #include <grpc++/grpc++.h> #include <grpc++/support/async_stream.h> diff --git a/library/cpp/lwtrace/rwspinlock.h b/library/cpp/lwtrace/rwspinlock.h index 7c518ec49e..5e4608e068 100644 --- a/library/cpp/lwtrace/rwspinlock.h +++ b/library/cpp/lwtrace/rwspinlock.h @@ -1,5 +1,7 @@ #pragma once +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/system/spinlock.h> // State can be one of: diff --git a/library/cpp/lwtrace/shuttle.h b/library/cpp/lwtrace/shuttle.h index 85c6e4da61..d8e0987c35 100644 --- a/library/cpp/lwtrace/shuttle.h +++ b/library/cpp/lwtrace/shuttle.h @@ -3,6 +3,7 @@ #include "event.h" #include <library/cpp/containers/stack_vector/stack_vec.h> +#include <library/cpp/deprecated/atomic/atomic.h> #include <util/generic/ptr.h> #include <util/system/spinlock.h> 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 { diff --git a/library/cpp/threading/future/core/future.h b/library/cpp/threading/future/core/future.h index 2e82bb953e..c803b28b75 100644 --- a/library/cpp/threading/future/core/future.h +++ b/library/cpp/threading/future/core/future.h @@ -2,6 +2,8 @@ #include "fwd.h" +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/datetime/base.h> #include <util/generic/function.h> #include <util/generic/maybe.h> diff --git a/library/cpp/threading/task_scheduler/task_scheduler.h b/library/cpp/threading/task_scheduler/task_scheduler.h index df4da941a8..cff057ae43 100644 --- a/library/cpp/threading/task_scheduler/task_scheduler.h +++ b/library/cpp/threading/task_scheduler/task_scheduler.h @@ -1,5 +1,7 @@ #pragma once +#include <library/cpp/deprecated/atomic/atomic.h> + #include <util/generic/vector.h> #include <util/generic/ptr.h> #include <util/generic/map.h> |