summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-01-20 19:10:19 +0100
committerDave Davenport <qball@gmpclient.org>2016-01-20 19:10:19 +0100
commit784244a35bd208e0ac5d95f11220e103ad738ec8 (patch)
tree6450622edb5cceb410eabf6d92413c995ca85f40 /source
parenteadf455c8c4d74a9b66a47ad97de274fb3d16241 (diff)
Remove unused timeout function.
Diffstat (limited to 'source')
-rw-r--r--source/rofi.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/source/rofi.c b/source/rofi.c
index 546f6c97..b3d03b67 100644
--- a/source/rofi.c
+++ b/source/rofi.c
@@ -137,32 +137,6 @@ static int switcher_get ( const char *name )
}
/**
- * @param display Connection to the X server.
- * @param x11_fd File descriptor from the X server to listen on.
- *
- * Function waits for a new XEvent with a timeout.
- */
-static inline MainLoopEvent wait_for_xevent_or_timeout ( Display *display, int x11_fd )
-{
- // Check if events are pending.
- if ( XPending ( display ) ) {
- return ML_XEVENT;
- }
- // If not, wait for timeout.
- struct timeval tv = { .tv_usec = 200000, .tv_sec = 0 };
- fd_set in_fds;
- // Create a File Description Set containing x11_fd
- FD_ZERO ( &in_fds );
- FD_SET ( x11_fd, &in_fds );
-
- // Wait for X Event or a Timer
- if ( select ( x11_fd + 1, &in_fds, 0, 0, &tv ) == 0 ) {
- return ML_TIMEOUT;
- }
- return ML_XEVENT;
-}
-
-/**
* Levenshtein Sorting.
*/