Lines Matching defs:fd2
25 * 09/2002 added fd2 array to remove statid fds
48 int fd[10], fd2[10];
68 fd2[i] = fd[i];
79 if (fd[2] < fd2[2])
83 if ((fd[4] = fcntl(fd[1], F_DUPFD, fd2[3])) < 0)
84 tst_resm(TFAIL | TERRNO, "fcntl(.., fd2[3]) failed");
86 if (fd[4] < fd2[3])
88 "expect greater than %d", fd[4], fd2[3]);
90 if ((fd[8] = fcntl(fd[1], F_DUPFD, fd2[5])) < 0)
91 tst_resm(TFAIL | TERRNO, "fcntl(.., fd2[5]) failed");
93 if (fd[8] != fd2[5])
95 "got %d, expected %d", fd[8], fd2[5]);