Lines Matching defs:fds
74 static void close_fds(struct pollfd *fds, nfds_t nfds)
82 close(fds[i].fd);
91 struct pollfd *fds;
147 fds = malloc(my_args.lxcpath_cnt * sizeof(struct pollfd));
148 if (!fds) {
161 close_fds(fds, i);
164 fds[i].fd = fd;
165 fds[i].events = POLLIN;
166 fds[i].revents = 0;
172 if (lxc_monitor_read_fdset(fds, nfds, &msg, -1) < 0) {
197 close_fds(fds, nfds);
201 free(fds);