tdlight/tdutils/td/utils/TsCerr.h

34 lines
703 B
C
Raw Permalink Normal View History

2021-05-18 16:24:32 +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:24:32 +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)
//
#pragma once
#include "td/utils/Slice.h"
#include <atomic>
namespace td {
class TsCerr {
public:
TsCerr();
TsCerr(const TsCerr &) = delete;
TsCerr &operator=(const TsCerr &) = delete;
TsCerr(TsCerr &&) = delete;
TsCerr &operator=(TsCerr &&) = delete;
~TsCerr();
TsCerr &operator<<(Slice slice);
private:
static std::atomic_flag lock_;
2021-10-18 18:26:14 +02:00
static void enterCritical();
static void exitCritical();
2021-05-18 16:24:32 +02:00
};
} // namespace td