Skip to content

Opening book details…

About this document

IPC with Pipes in System Programming by Jordan Zu'bi is a document available to read on EtoBox.

This document discusses interprocess communication using pipes in Linux. It explains that pipes allow two processes to communicate by writing data to one end and reading from the other. The pipe acts as a FIFO buffer, blocking writes to a full pipe and reads from an empty pipe. It provides an example C code for creating a pipe using the pipe() system call. The goal of the lab is to have two processes communicate using a pipe: process 1 takes user input and passes it through the pipe to process 2, which chec

Author
Jordan Zu'bi
Language
EN