Searched refs:fdmaskp (Results 1 - 1 of 1) sorted by relevance

/freebsd-9.3-release/sbin/ping6/
H A Dping6.c227 struct pollfd fdmaskp[1]; variable in typeref:struct:pollfd
229 fd_set *fdmaskp = NULL; variable
1075 if ((fdmaskp = malloc(fdmasks)) == NULL)
1127 fdmaskp[0].fd = s;
1128 fdmaskp[0].events = POLLIN;
1129 cc = poll(fdmaskp, 1, timeout);
1131 memset(fdmaskp, 0, fdmasks);
1132 FD_SET(s, fdmaskp);
1133 cc = select(s + 1, fdmaskp, NULL, NULL, tv);
1205 if(fdmaskp !
[all...]

Completed in 90 milliseconds