mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 10:10:09 +01:00
minor reformatting
This commit is contained in:
parent
15da01e16b
commit
3bc58af79d
1 changed files with 9 additions and 10 deletions
|
|
@ -302,17 +302,16 @@ interruptibleXNextEvent(Display * dpy, XEvent * 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);
|
||||
/* 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,
|
||||
NULL, NULL, NULL);
|
||||
rc = select(__glutConnectionFD + 1, &fds, NULL, NULL, NULL);
|
||||
if (rc < 0) {
|
||||
if (errno == EINTR) {
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue