tdlight/tdutils/td/utils/port/detail/EventFdWindows.h

49 lines
974 B
C
Raw Normal View History

//
2022-01-01 01:35:39 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
//
// 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/port/config.h"
#ifdef TD_EVENTFD_WINDOWS
#include "td/utils/common.h"
#include "td/utils/port/detail/NativeFd.h"
#include "td/utils/port/detail/PollableFd.h"
#include "td/utils/port/EventFdBase.h"
#include "td/utils/Status.h"
namespace td {
namespace detail {
class EventFdWindows final : public EventFdBase {
NativeFd event_;
public:
EventFdWindows() = default;
2021-07-03 22:51:36 +02:00
void init() final;
2021-07-03 22:51:36 +02:00
bool empty() final;
2021-07-03 22:51:36 +02:00
void close() final;
2021-07-03 22:51:36 +02:00
Status get_pending_error() final TD_WARN_UNUSED_RESULT;
2021-07-03 22:51:36 +02:00
PollableFdInfo &get_poll_info() final;
2021-07-03 22:51:36 +02:00
void release() final;
2021-07-03 22:51:36 +02:00
void acquire() final;
2021-07-03 22:51:36 +02:00
void wait(int timeout_ms) final;
};
} // namespace detail
} // namespace td
#endif