HomeSort by: relevance | last modified time | path
    Searched defs:fdset (Results 1 - 5 of 5) sorted by relevancy

  /src/games/hunt/huntd/
extern.c 48 struct pollfd fdset[3+MAXPL+MAXMON]; variable in typeref:struct:pollfd[]
  /src/sys/arch/zaurus/stand/zboot/
unixcons.c 128 fd_set fdset; local in function:common_getc
135 FD_ZERO(&fdset);
138 FD_SET(fd, &fdset);
140 n = uselect(nfds, &fdset, NULL, NULL, &tv);
147 if (FD_ISSET(fd, &fdset)) {
  /src/usr.sbin/sdpd/
server.c 102 FD_ZERO(&srv->fdset);
204 FD_SET(fd, &srv->fdset);
264 FD_SET(fd, &srv->fdset);
307 fd_set fdset; local in function:server_do
312 memcpy(&fdset, &srv->fdset, sizeof(fdset));
313 n = select(srv->fdmax + 1, &fdset, NULL, NULL, NULL);
319 srv->fdmax + 1, &fdset, strerror(errno), errno);
325 if (!FD_ISSET(fd, &fdset))
    [all...]
sdpd.h 115 fd_set fdset; /* current descriptor set */ member in struct:server
  /src/lib/libc/rpc/
svc_fdset.c 64 fd_set *fdset; member in struct:svc_fdset
102 fprintf(stderr, "%p[%d] fd_set<", fds->fdset, fds->fdmax);
104 if (!FD_ISSET(i, fds->fdset))
146 while (fds->fdmax >= 0 && !FD_ISSET(fds->fdmax, fds->fdset))
151 svc_fdset = *(__fd_set_256 *)(void *)__svc_fdset.fdset;
165 free(fds->fdset);
259 if (fds->fdset && fd < fds->fdsize) {
266 char *newfdset = realloc(fds->fdset, __NFD_BYTES(fd));
274 fds->fdset = (void *)newfdset;
303 DPRINTF("switching to %p", fds->fdset);
    [all...]

Completed in 47 milliseconds