dinput: Changed select to poll.

This commit is contained in:
Damjan Jovanovic 2006-11-06 08:28:29 +02:00 committed by Alexandre Julliard
parent 0082973d93
commit b56953f49d
2 changed files with 14 additions and 11 deletions

View File

@ -53,6 +53,9 @@
#ifdef HAVE_LINUX_JOYSTICK_H
# include <linux/joystick.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
#include "wine/debug.h"
#include "wine/unicode.h"
@ -897,8 +900,7 @@ static LONG calculate_pov(JoystickImpl *This, int index)
}
static void joy_polldev(JoystickImpl *This) {
struct timeval tv;
fd_set readfds;
struct pollfd plfd;
struct js_event jse;
TRACE("(%p)\n", This);
@ -907,9 +909,9 @@ static void joy_polldev(JoystickImpl *This) {
return;
}
while (1) {
memset(&tv,0,sizeof(tv));
FD_ZERO(&readfds);FD_SET(This->joyfd,&readfds);
if (1>select(This->joyfd+1,&readfds,NULL,NULL,&tv))
plfd.fd = This->joyfd;
plfd.events = POLLIN;
if (poll(&plfd,1,0) != 1)
return;
/* we have one event, so we can read */
if (sizeof(jse)!=read(This->joyfd,&jse,sizeof(jse))) {

View File

@ -48,6 +48,9 @@
# define HAVE_CORRECT_LINUXINPUT_H
# endif
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
#include "wine/debug.h"
#include "wine/unicode.h"
@ -860,8 +863,7 @@ static void calculate_ids(LPDIDATAFORMAT df)
}
static void joy_polldev(JoystickImpl *This) {
struct timeval tv;
fd_set readfds;
struct pollfd plfd;
struct input_event ie;
int btn, offset;
@ -869,11 +871,10 @@ static void joy_polldev(JoystickImpl *This) {
return;
while (1) {
memset(&tv,0,sizeof(tv));
FD_ZERO(&readfds);
FD_SET(This->joyfd,&readfds);
plfd.fd = This->joyfd;
plfd.events = POLLIN;
if (1>select(This->joyfd+1,&readfds,NULL,NULL,&tv))
if (poll(&plfd,1,0) != 1)
return;
/* we have one event, so we can read */