Home | History | Annotate | Download | only in ps2gs

Lines Matching refs:fdset

404 	fd_set fdset;
415 FD_ZERO(&fdset);
416 FD_SET(fd, &fdset);
419 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
440 fd_set fdset;
444 FD_ZERO(&fdset);
445 FD_SET(fd, &fdset);
448 while ( select(fd+1, &fdset, 0, 0, &tv) > 0 ) {
459 FD_ZERO(&fdset);
460 FD_SET(fd, &fdset);
463 if ( select(fd+1, &fdset, 0, 0, &tv) < 1 ) {
783 fd_set fdset;
790 FD_ZERO(&fdset);
793 FD_SET(keyboard_fd, &fdset);
799 FD_SET(mouse_fd, &fdset);
804 if ( select(max_fd+1, &fdset, NULL, NULL, &zero) > 0 ) {
806 if ( FD_ISSET(keyboard_fd, &fdset) ) {
811 if ( FD_ISSET(mouse_fd, &fdset) ) {