Lines Matching refs:RL
73 RL(kq = kqueue());
74 RL(__kevent50(kq, &ev, 1, NULL, 1, &(const struct timespec){0,0}));
76 RL(__kevent50(kq, NULL, 0, &ev, 1, NULL));
86 RL(fd = open("file", O_RDWR|O_CREAT, 0666));
87 RL(ftruncate(fd, pagesize));
92 RL(msync(map, pagesize));
102 RL(__sigfillset14(&mask));
103 RL(__sigprocmask14(SIG_BLOCK, &mask, &omask));
105 RL(__sigtimedwait(&omask, &info, &t));
121 RL(pipe(fd));
123 RL(aio_read(&aio));
125 RL(aio_suspend(aiolist, __arraycount(aiolist), NULL));
142 RL(kq = kqueue());
143 RL(kevent(kq, &ev, 1, NULL, 1, &(const struct timespec50){0,0}));
145 RL(kevent(kq, NULL, 0, &ev, 1, NULL));
155 RL(mq = mq_open("mq", O_RDWR|O_CREAT, 0666, NULL));
157 RL(mq_timedreceive(mq, buf, sizeof(buf), NULL, &t));
167 RL(mq = mq_open("mq", O_RDWR|O_CREAT, 0666, NULL));
169 RL(mq_timedsend(mq, buf, sizeof(buf), 0, &t));
178 RL(nanosleep(&t, NULL));
188 RL(pipe(fd));
192 RL(pollts(&pfd, 1, &t, NULL));
204 RL(pipe(fd));
207 RL(pselect(fd[0] + 1, &readfd, NULL, NULL, &t, NULL));
219 RL(pipe(fd));
222 RL(select(fd[0] + 1, &readfd, NULL, NULL, &t));
230 RL(sigfillset(&mask));
231 RL(sigprocmask(SIG_BLOCK, &mask, &omask));
233 RL(sigsuspend(&omask));
243 RL(__sigfillset14(&mask));
244 RL(__sigprocmask14(SIG_BLOCK, &mask, &omask));
246 RL(sigtimedwait(&omask, &info, &t));