diff options
| author | arcadia-devtools <[email protected]> | 2022-06-10 04:35:12 +0300 | 
|---|---|---|
| committer | arcadia-devtools <[email protected]> | 2022-06-10 04:35:12 +0300 | 
| commit | b62983df1309f8f2418ce4dfd289fe28cc3f3103 (patch) | |
| tree | 475903408abaf7cb7d77ccd3736ef9a773b6ed90 /library/cpp | |
| parent | f35aa2aefb0a56444fb1de8ccf4cb3da7117c31e (diff) | |
intermediate changes
ref:737aa123095c71808f1dcf45b0d817cc4920fe97
Diffstat (limited to 'library/cpp')
| -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 bd9c792cbde..ac36e6ddc0d 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 3d92ef8450e..f8396b7b7e6 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 d05de20203f..52cf658ba24 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 ab0a0627be0..bf0f8e0f9f2 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 7c518ec49e4..5e4608e0683 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 85c6e4da613..d8e0987c358 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 f0b7cd90e40..3d11775ec31 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 f685135bedd..4240a5cd96c 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 373f4c0e13b..b519e5509c9 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 de714fd3429..b1edf55cd60 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 2e82bb953eb..c803b28b756 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 df4da941a88..cff057ae435 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>  | 
