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

/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/sys/unix/
H A Dunixres.c73 int pfd[2]; local
75 if (pipe(pfd))
77 retval = fstat(pfd[0], &st);
78 close(pfd[0]);
79 close(pfd[1]);
106 int pfd[2]; local
108 if (pipe(pfd))
110 retval = fstat(pfd[0], &st);
111 close(pfd[0]);
112 close(pfd[
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/sys/unix/
H A Dunixres.c73 int pfd[2]; local
75 if (pipe(pfd))
77 retval = fstat(pfd[0], &st);
78 close(pfd[0]);
79 close(pfd[1]);
106 int pfd[2]; local
108 if (pipe(pfd))
110 retval = fstat(pfd[0], &st);
111 close(pfd[0]);
112 close(pfd[
[all...]
/seL4-refos-master/libs/libmuslc/src/env/
H A D__libc_start_main.c44 struct pollfd pfd[3] = { {.fd=0}, {.fd=1}, {.fd=2} }; local
46 __syscall(SYS_poll, pfd, 3, 0);
48 __syscall(SYS_ppoll, pfd, 3, &(struct timespec){0}, 0, _NSIG/8);
50 for (i=0; i<3; i++) if (pfd[i].revents&POLLNVAL)
/seL4-refos-master/libs/libmuslc/src/network/
H A Dres_msend.c47 struct pollfd pfd; local
105 pfd.fd = fd;
106 pfd.events = POLLIN;
126 if (poll(&pfd, 1, t1+retry_interval-t2) <= 0) continue;

Completed in 102 milliseconds