#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
/* Borudan karakterleri oku ve stdout'a yaz. */
void
read_from_pipe (int dosya)
{
FILE *akim;
int c;
akim = fdopen (dosya, "r");
while ((c = fgetc (akim)) != EOF)
putchar (c);
fclose (akim);
}
/* Boruya rastgele birşeyler yaz. */
void
write_to_pipe (int dosya)
{
FILE *akim;
akim = fdopen (dosya, "w");
fprintf (akim, "Merhaba!\n");
fprintf (akim, "Elveda!\n");
fclose (akim);
}
int
main (void)
{
pid_t pid;
int boru[2];
/* Boruyu yarat. */
if (pipe (boru))
{
fprintf (stderr, "Boruda hata oluştu.\n");
return EXIT_FAILURE;
}
/* Alt süreci oluşturalım. */
pid = fork ();
if (pid == (pid_t) 0)
{
/* Bu bir alt süreç.
Önce diğer ucu kapatalım. */
close (boru[1]);
read_from_pipe (boru[0]);
return EXIT_SUCCESS;
}
else if (pid < (pid_t) 0)
{
/* Alt süreç oluşturulamadı. */
fprintf (stderr, "Alt süreç oluşturulamadı.\n");
return EXIT_FAILURE;
}
else
{
/* Bu bir üst süreç.
Önce diğer ucu kapatalım. */
close (boru[0]);
write_to_pipe (boru[1]);
return EXIT_SUCCESS;
}
}