3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/unix/private/epolldispatcher.h
|
|
// Purpose: wxEpollDispatcher class
|
|
// Authors: Lukasz Michalski
|
|
// Created: April 2007
|
|
// Copyright: (c) Lukasz Michalski
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_PRIVATE_EPOLLDISPATCHER_H_
|
|
#define _WX_PRIVATE_EPOLLDISPATCHER_H_
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#ifdef wxUSE_EPOLL_DISPATCHER
|
|
|
|
#include "wx/private/fdiodispatcher.h"
|
|
|
|
struct epoll_event;
|
|
|
|
class WXDLLIMPEXP_BASE wxEpollDispatcher : public wxFDIODispatcher
|
|
{
|
|
public:
|
|
// create a new instance of this class, can return NULL if
|
|
// epoll() is not supported on this system
|
|
//
|
|
// 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);
|
|
virtual bool HasPending() const;
|
|
virtual int Dispatch(int timeout = TIMEOUT_INFINITE);
|
|
|
|
private:
|
|
// ctor is private, use Create()
|
|
wxEpollDispatcher(int epollDescriptor);
|
|
|
|
// common part of HasPending() and Dispatch(): calls epoll_wait() with the
|
|
// given timeout
|
|
int DoPoll(epoll_event *events, int numEvents, int timeout) const;
|
|
|
|
|
|
int m_epollDescriptor;
|
|
};
|
|
|
|
#endif // wxUSE_EPOLL_DISPATCHER
|
|
|
|
#endif // _WX_PRIVATE_SOCKETEVTDISPATCH_H_
|