04-27-07 12:17 PM
Hi Rainer,
You made my day!!! I had one more query. i wanted a small c program
that gives application of FIFOs.
David
On Apr 26, 12:25 pm, Rainer Weikusat <rweiku...@mssgmbh.com> wrote:
> David <Vishal.Pati...@gmail.com> writes:
>
> #include <unistd.h>
>
> int main(void)
> {
> int fds[2];
>
> pipe(fds);
> close(fds[0]);
> write(fds[1], fds, sizeof(*fds));
> return 0;
>
>
>
> }- Hide quoted text -
>
> - Show quoted text -
[ Post a follow-up to this message ]
|