Lines Matching refs:fd1
80 static void sem_player(int fd1, int fd2)
82 fprintf(stdout, "[%u] posting 1 on %d\n", getpid(), fd1);
83 xsem_post(fd1, 1);
88 fprintf(stdout, "[%u] posting 1 on %d\n", getpid(), fd1);
89 xsem_post(fd1, 1);
94 fprintf(stdout, "[%u] posting 5 on %d\n", getpid(), fd1);
95 xsem_post(fd1, 5);
112 int c, fd1, fd2, status;
127 if ((fd1 = eventfd2(0, EFD_SEMLIKE)) == -1 ||
133 sem_player(fd1, fd2);
137 sem_player(fd2, fd1);