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

/illumos-gate/usr/src/cmd/ttymon/
H A Dtmglobal.c65 int Npollfd; /* size of the pollfd array */ variable
H A Dtmextern.h125 extern int Npollfd;
H A Dtmhandler.c402 if (Nentries > Npollfd) {
404 debug("Nentries > Npollfd, reallocating pollfds");
408 Npollfd = Nentries + 10;
409 if (Npollfd > Maxfds)
410 Npollfd = Maxfds;
412 malloc((unsigned)(Npollfd * sizeof(struct pollfd))))
H A Dttymon.c221 Npollfd = Nentries + 10;
222 if (Npollfd > Maxfds)
223 Npollfd = Maxfds;
225 malloc((unsigned)(Npollfd * sizeof (struct pollfd))))

Completed in 45 milliseconds