X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad8d42f83cdf7a4f26969957e94ed166a1a5710e..333e57d578e9e0fb6555452b5a53698ffd85ee69:/include/wx/unix/private/epolldispatcher.h diff --git a/include/wx/unix/private/epolldispatcher.h b/include/wx/unix/private/epolldispatcher.h index ef67a1520b..39bd3a27e5 100644 --- a/include/wx/unix/private/epolldispatcher.h +++ b/include/wx/unix/private/epolldispatcher.h @@ -13,35 +13,34 @@ #include "wx/defs.h" -#ifdef HAVE_SYS_EPOLL_H +#ifdef wxUSE_EPOLL_DISPATCHER #include "wx/private/fdiodispatcher.h" class WXDLLIMPEXP_CORE wxEpollDispatcher : public wxFDIODispatcher { public: - // get pointer to the unique instance of this class, can return NULL if + // create a new instance of this class, can return NULL if // epoll() is not supported on this system // - // do not delete the returned pointer - static wxEpollDispatcher *Get(); + // the caller should delete the returned pointer + static wxEpollDispatcher *Create(); + + virtual ~wxEpollDispatcher(); // implement base class pure virtual methods virtual bool RegisterFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL); virtual bool ModifyFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL); - virtual bool UnregisterFD(int fd, int flags = wxFDIO_ALL); - virtual void RunLoop(int timeout = TIMEOUT_INFINITE); + virtual bool UnregisterFD(int fd); + virtual void Dispatch(int timeout = TIMEOUT_INFINITE); private: - // ctor is private, use Get() - wxEpollDispatcher(); - - // return true if the object was successfully initialized - bool IsOk() const { return m_epollDescriptor != -1; } + // ctor is private, use Create() + wxEpollDispatcher(int epollDescriptor); int m_epollDescriptor; }; -#endif // HAVE_SYS_EPOLL_H +#endif // wxUSE_EPOLL_DISPATCHER #endif // _WX_PRIVATE_SOCKETEVTDISPATCH_H_