Committing in .

Work around for bug in VMS7.2

 Modified Files:
 	Mesa/src-glut/glut_event.c
 ----------------------------------------------------------------------
This commit is contained in:
Jouk Jansen
2000-01-07 01:42:06 +00:00
parent 075f184b74
commit a3bcbfaeb1

View File

@@ -301,6 +301,14 @@ interruptibleXNextEvent(Display * dpy, XEvent * event)
XNextEvent(dpy, event);
return 1;
}
#ifndef VMS
/* the combination ConectionNumber-select is buggy on VMS. Sometimes it
* fails. This part of the code hangs the program on VMS7.2. But even
* without it the program seems to run correctly.
* Note that this is a bug in the VMS/DECWindows run-time-libraries.
* Compaq engeneering does not want or is not able to make a fix.
* (last sentence is a quotation from Compaq when I reported the
* problem January 2000) */
FD_ZERO(&fds);
FD_SET(__glutConnectionFD, &fds);
rc = select(__glutConnectionFD + 1, &fds,
@@ -312,6 +320,7 @@ interruptibleXNextEvent(Display * dpy, XEvent * event)
__glutFatalError("select error.");
}
}
#endif
}
}