File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 1
1
#include " hazard_ptr.h"
2
2
3
- #include " private.h"
4
-
5
3
#include < yt/yt/core/misc/singleton.h>
6
4
#include < yt/yt/core/misc/proc.h>
7
5
#include < yt/yt/core/misc/ring_queue.h>
@@ -25,10 +23,6 @@ using namespace NConcurrency;
25
23
26
24
// //////////////////////////////////////////////////////////////////////////////
27
25
28
- static constexpr auto & Logger = LockFreeLogger;
29
-
30
- // //////////////////////////////////////////////////////////////////////////////
31
-
32
26
namespace NDetail {
33
27
34
28
// //////////////////////////////////////////////////////////////////////////////
@@ -325,16 +319,6 @@ bool THazardPointerManager::DoReclaimHazardPointers(THazardThreadState* threadSt
325
319
retireList.push (item);
326
320
});
327
321
328
- YT_LOG_TRACE_IF (
329
- !protectedPointers.empty (),
330
- " Scanning hazard pointers (Candidates: %v, Protected: %v)" ,
331
- MakeFormattableView (TRingQueueIterableWrapper (retireList), [&] (auto * builder, auto item) {
332
- builder->AppendFormat (" %v" , TTaggedPtr<void >::Unpack (item.PackedPtr ).Ptr );
333
- }),
334
- MakeFormattableView (protectedPointers, [&] (auto * builder, auto ptr) {
335
- builder->AppendFormat (" %v" , ptr);
336
- }));
337
-
338
322
size_t pushedCount = 0 ;
339
323
auto popCount = retireList.size ();
340
324
while (popCount-- > 0 ) {
Original file line number Diff line number Diff line change 4
4
5
5
#include < yt/yt/core/concurrency/scheduler_api.h>
6
6
7
- #include < library/cpp/yt/logging/logger.h>
8
-
9
7
#include < atomic>
10
8
11
9
namespace NYT {
You can’t perform that action at this time.
0 commit comments