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

52 lines
1.0 KiB
C
Raw Normal View History

//
2021-01-01 13:57:46 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
//
// 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_LINUX
#include "td/utils/common.h"
#include "td/utils/port/detail/PollableFd.h"
#include "td/utils/port/EventFdBase.h"
#include "td/utils/Status.h"
namespace td {
namespace detail {
class EventFdLinuxImpl;
class EventFdLinux final : public EventFdBase {
unique_ptr<EventFdLinuxImpl> impl_;
public:
EventFdLinux();
EventFdLinux(EventFdLinux &&);
EventFdLinux &operator=(EventFdLinux &&);
~EventFdLinux();
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