Skip to content

Commit de55ad1

Browse files
8Keepmeta-codesync[bot]
authored andcommitted
Rewrite references of event_count shim target (facebookincubator#16902)
Summary: X-link: prestodb/presto#27425 Pull Request resolved: facebookincubator#16902 Update all references across the repo to point directly to `//folly/synchronization:event_count`. Reviewed By: AlexaAza Differential Revision: D97588318 fbshipit-source-id: 883fa93fee2011327d65dc4c5ddf42ac8a9ad074
1 parent 871c87e commit de55ad1

28 files changed

+28
-28
lines changed

velox/common/base/tests/SkewedPartitionBalancerTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <gtest/gtest.h>
2020

2121
#include "folly/Random.h"
22-
#include "folly/experimental/EventCount.h"
22+
#include "folly/synchronization/EventCount.h"
2323
#include "velox/common/base/tests/GTestUtils.h"
2424
#include "velox/common/testutil/TestValue.h"
2525

velox/common/caching/tests/AsyncDataCacheTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#include "folly/experimental/EventCount.h"
17+
#include "folly/synchronization/EventCount.h"
1818
#include "velox/common/base/Semaphore.h"
1919
#include "velox/common/base/tests/GTestUtils.h"
2020
#include "velox/common/caching/CacheTTLController.h"

velox/common/memory/tests/ArbitrationParticipantTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#include <deque>
2222
#include <vector>
2323

24-
#include "folly/experimental/EventCount.h"
2524
#include "folly/futures/Barrier.h"
25+
#include "folly/synchronization/EventCount.h"
2626

2727
#include "gmock/gmock-matchers.h"
2828
#include "velox/common/base/SuccinctPrinter.h"

velox/common/memory/tests/MockSharedArbitratorTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <re2/re2.h>
2222
#include <deque>
2323
#include <vector>
24-
#include "folly/experimental/EventCount.h"
24+
#include "folly/synchronization/EventCount.h"
2525
#include "velox/common/base/tests/GTestUtils.h"
2626
#include "velox/common/memory/MallocAllocator.h"
2727
#include "velox/common/memory/Memory.h"

velox/common/memory/tests/SharedArbitratorTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <folly/init/Init.h>
2323
#include <functional>
2424
#include <optional>
25-
#include "folly/experimental/EventCount.h"
25+
#include "folly/synchronization/EventCount.h"
2626
#include "velox/common/base/Exceptions.h"
2727
#include "velox/common/base/tests/GTestUtils.h"
2828
#include "velox/common/memory/MallocAllocator.h"

velox/exec/tests/AggregationTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <folly/Math.h>
1919
#include <re2/re2.h>
2020

21-
#include "folly/experimental/EventCount.h"
21+
#include "folly/synchronization/EventCount.h"
2222
#include "velox/common/base/tests/GTestUtils.h"
2323
#include "velox/common/file/FileSystems.h"
2424
#include "velox/common/memory/SharedArbitrator.h"

velox/exec/tests/DriverTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <folly/init/Init.h>
1818
#include <velox/exec/Driver.h>
1919
#include <memory>
20-
#include "folly/experimental/EventCount.h"
20+
#include "folly/synchronization/EventCount.h"
2121
#include "velox/common/base/tests/GTestUtils.h"
2222
#include "velox/common/testutil/TestValue.h"
2323
#include "velox/dwio/common/tests/utils/BatchMaker.h"

velox/exec/tests/HashJoinTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <re2/re2.h>
1818

1919
#include <fmt/format.h>
20-
#include "folly/experimental/EventCount.h"
20+
#include "folly/synchronization/EventCount.h"
2121
#include "velox/common/base/tests/GTestUtils.h"
2222
#include "velox/common/testutil/TempDirectoryPath.h"
2323
#include "velox/common/testutil/TestValue.h"

velox/exec/tests/HashTableTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#include "velox/exec/HashTable.h"
18-
#include "folly/experimental/EventCount.h"
18+
#include "folly/synchronization/EventCount.h"
1919
#include "velox/common/base/SelectivityInfo.h"
2020
#include "velox/common/base/tests/GTestUtils.h"
2121
#include "velox/common/testutil/TestValue.h"

velox/exec/tests/IndexLookupJoinTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#include "velox/exec/IndexLookupJoin.h"
1818
#include "fmt/format.h"
19-
#include "folly/experimental/EventCount.h"
19+
#include "folly/synchronization/EventCount.h"
2020
#include "gmock/gmock.h"
2121
#include "gtest/gtest-matchers.h"
2222
#include "velox/common/base/tests/GTestUtils.h"

0 commit comments

Comments
 (0)