Home | History | Annotate | Download | only in ping

Lines Matching defs:pset

639 				struct pollfd pset;
640 pset.fd = icmp_sock;
641 pset.events = POLLIN|POLLERR;
642 pset.revents = 0;
643 if (poll(&pset, 1, next) < 1 ||
644 !(pset.revents&(POLLIN|POLLERR)))