Results of 1 - 2 of about 2 for pfds (0.001 sec.)
- Man page of POLL 9357
- POLL Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 poll, pp
...
*argv[]) { int nfds, num_open_fds; struct pollfd *pfds; if (argc < 2) { fprintf(stderr, "Usage: %s file.. ...
t(EXIT_FAILURE); } num_open_fds = nfds = argc - 1; pfds = calloc(nfds, sizeof(struct pollfd)); if (pfds == ...
"); /* Open each file on command line, and add it 'pfds' array */ for (int j = 0; j < nfds; j++) { pfds[j] ...
.fd = open(argv[j + 1], O_RDONLY); if (pfds[j].fd == -1) errExit("open"); printf("Opened \"%s\ ...
-
https://man.plustar.jp/manpage/man2/poll.2.html
- [similar]
- Man page of POLL 9357
- POLL Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 poll, pp
...
*argv[]) { int nfds, num_open_fds; struct pollfd *pfds; if (argc < 2) { fprintf(stderr, "Usage: %s file.. ...
t(EXIT_FAILURE); } num_open_fds = nfds = argc - 1; pfds = calloc(nfds, sizeof(struct pollfd)); if (pfds == ...
"); /* Open each file on command line, and add it 'pfds' array */ for (int j = 0; j < nfds; j++) { pfds[j] ...
.fd = open(argv[j + 1], O_RDONLY); if (pfds[j].fd == -1) errExit("open"); printf("Opened \"%s\ ...
-
https://man.plustar.jp/manpage/man2/ppoll.2.html
- [similar]
PREV
1
NEXT