pipe.c 516 B

1234567891011121314151617181920212223
  1. //http://www2.cs.uregina.ca/~hamilton/courses/330/notes/unix/pipes/pipes.html
  2. #include <unistd.h>
  3. int main()
  4. {
  5. int pid, pip[2];
  6. char instring[20];
  7. pipe(pip);
  8. pid = fork();
  9. if (pid == 0) /* child : sends message to parent*/
  10. {
  11. /* send 7 characters in the string, including end-of-string */
  12. write(pip[1], "Hi Mom!", 7);
  13. }
  14. else /* parent : receives message from child */
  15. {
  16. /* read from the pipe */
  17. read(pip[0], instring, 7);
  18. }
  19. }