projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
make IsOk() virtual to allow it to be overridden in e.g. wxEnhMetaFile (replaces...
[wxWidgets.git]
/
src
/
unix
/
epolldispatcher.cpp
diff --git
a/src/unix/epolldispatcher.cpp
b/src/unix/epolldispatcher.cpp
index e52aa35669dcb4b42f786cddc3b1f4fbb50ab410..cd57f124118cb979f1145dbcce662fc645ab8ba0 100644
(file)
--- a/
src/unix/epolldispatcher.cpp
+++ b/
src/unix/epolldispatcher.cpp
@@
-19,7
+19,7
@@
// for compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// for compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#if
def
wxUSE_EPOLL_DISPATCHER
+#if wxUSE_EPOLL_DISPATCHER
#include "wx/unix/private/epolldispatcher.h"
#include "wx/unix/private.h"
#include "wx/unix/private/epolldispatcher.h"
#include "wx/unix/private.h"
@@
-41,7
+41,7
@@
// helper: return EPOLLxxx mask corresponding to the given flags (and also log
// debugging messages about it)
// helper: return EPOLLxxx mask corresponding to the given flags (and also log
// debugging messages about it)
-static uint32_t GetEpollMask(int flags, int
fd
)
+static uint32_t GetEpollMask(int flags, int
WXUNUSED_UNLESS_DEBUG(fd)
)
{
uint32_t ep = 0;
{
uint32_t ep = 0;
@@
-82,7
+82,8
@@
wxEpollDispatcher *wxEpollDispatcher::Create()
wxLogSysError(_("Failed to create epoll descriptor"));
return NULL;
}
wxLogSysError(_("Failed to create epoll descriptor"));
return NULL;
}
-
+ wxLogTrace(wxEpollDispatcher_Trace,
+ _T("Epoll fd %d created"), epollDescriptor);
return new wxEpollDispatcher(epollDescriptor);
}
return new wxEpollDispatcher(epollDescriptor);
}
@@
-115,6
+116,8
@@
bool wxEpollDispatcher::RegisterFD(int fd, wxFDIOHandler* handler, int flags)
return false;
}
return false;
}
+ wxLogTrace(wxEpollDispatcher_Trace,
+ _T("Added fd %d (handler %p) to epoll %d"), fd, handler, m_epollDescriptor);
return true;
}
return true;
}
@@
-134,6
+137,8
@@
bool wxEpollDispatcher::ModifyFD(int fd, wxFDIOHandler* handler, int flags)
return false;
}
return false;
}
+ wxLogTrace(wxEpollDispatcher_Trace,
+ _T("Modified fd %d (handler: %p) on epoll %d"), fd, handler, m_epollDescriptor);
return true;
}
return true;
}
@@
-148,7
+153,8
@@
bool wxEpollDispatcher::UnregisterFD(int fd)
wxLogSysError(_("Failed to unregister descriptor %d from epoll descriptor %d"),
fd, m_epollDescriptor);
}
wxLogSysError(_("Failed to unregister descriptor %d from epoll descriptor %d"),
fd, m_epollDescriptor);
}
-
+ wxLogTrace(wxEpollDispatcher_Trace,
+ _T("removed fd %d from %d"), fd, m_epollDescriptor);
return true;
}
return true;
}