Searched defs:fdset (Results 1 - 1 of 1) sorted by relevance

/inkscape/
H A Dbuildtool.cpp4201 fd_set fdset; local
4202 FD_ZERO(&fdset);
4204 FD_SET(outRead, &fdset);
4206 FD_SET(errRead, &fdset);
4207 int ret = select(max+1, &fdset, NULL, NULL, NULL);
4210 if (FD_ISSET(outRead, &fdset))
4219 if (FD_ISSET(errRead, &fdset))

Completed in 1940 milliseconds