9157873f5b
* Fix compilation on GCC-13 GCC-13 changes internal cstdint includes, and now files that uses standart integer types should directly include cstdint header. See: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes Bug: https://bugs.gentoo.org/865117 Bug: https://bugs.gentoo.org/895440 * Convert line endings to Unix format
36 lines
789 B
C++
36 lines
789 B
C++
/*
|
|
* IXSelectInterrupt.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace ix
|
|
{
|
|
class SelectInterrupt
|
|
{
|
|
public:
|
|
SelectInterrupt();
|
|
virtual ~SelectInterrupt();
|
|
|
|
virtual bool init(std::string& errorMsg);
|
|
|
|
virtual bool notify(uint64_t value);
|
|
virtual bool clear();
|
|
virtual uint64_t read();
|
|
virtual int getFd() const;
|
|
virtual void* getEvent() const;
|
|
|
|
// Used as special codes for pipe communication
|
|
static const uint64_t kSendRequest;
|
|
static const uint64_t kCloseRequest;
|
|
};
|
|
|
|
using SelectInterruptPtr = std::unique_ptr<SelectInterrupt>;
|
|
} // namespace ix
|