xnest: Use SetNotifyFd to receive events

Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Keith Packard 2015-12-07 15:11:33 -08:00 committed by Adam Jackson
parent 24e65bf0db
commit 55c2e1a3aa
1 changed files with 8 additions and 1 deletions

View File

@ -35,6 +35,7 @@ is" without express or implied warranty.
#include "Pointer.h"
#include "Keyboard.h"
#include "Handlers.h"
#include "Events.h"
#include "Init.h"
#include "Args.h"
#include "Drawable.h"
@ -86,6 +87,12 @@ InitOutput(ScreenInfo * screen_info, int argc, char *argv[])
xnestDoFullGeneration = xnestFullGeneration;
}
static void
xnestNotifyConnection(int fd, int ready, void *data)
{
xnestCollectEvents();
}
void
InitInput(int argc, char *argv[])
{
@ -101,7 +108,7 @@ InitInput(int argc, char *argv[])
mieqInit();
AddEnabledDevice(XConnectionNumber(xnestDisplay));
SetNotifyFd(XConnectionNumber(xnestDisplay), xnestNotifyConnection, X_NOTIFY_READ, NULL);
RegisterBlockAndWakeupHandlers(xnestBlockHandler, xnestWakeupHandler, NULL);
}