aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdutils/td/utils/TsLog.cpp
blob: 2c711ea3276de7453f91c1110717511e81b9d66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include "td/utils/TsLog.h"

#include "td/utils/ExitGuard.h"

namespace td {

void TsLog::enter_critical() {
  while (lock_.test_and_set(std::memory_order_acquire) && !ExitGuard::is_exited()) {
    // spin
  }
}

static ExitGuard exit_guard;

}  // namespace td