Home | History | Annotate | Download | only in cfs-scheduler

Lines Matching defs:fds

102 static void fdpair(int fds[2])
105 if (pipe(fds) == 0)
108 if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds) == 0)
249 int fds[2];
258 fdpair(fds);
261 ctx->in_fds[0] = fds[0];
262 ctx->in_fds[1] = fds[1];
268 snd_ctx->out_fds[i] = fds[1];
270 close(fds[0]);
273 /* Now we have all the fds, fork the senders */
283 /* Close the fds we have left */