tdlight/tdutils/td/utils/TsLog.cpp

22 lines
521 B
C++
Raw Normal View History

2021-05-18 16:40:37 +02:00
//
2024-01-01 01:07:21 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
2021-05-18 16:40:37 +02:00
//
// 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