From d31411696528edffae42c5bb40f98eea00619aed Mon Sep 17 00:00:00 2001 From: Adam Hall Date: Sat, 11 Jan 2025 15:48:01 -0500 Subject: [PATCH] Fix formatting in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b43e740..a105635 100644 --- a/README.md +++ b/README.md @@ -118,9 +118,9 @@ communication channel between two processes. It allows one process to write data into the pipe, while another process can read from it. * Write a user-space program `user/src/lab0/pingpong.c` that will use pipes in order to commutate data across two processes, which must be created using fork. -* The processes should use pipes in order to share the with each-other. For simplicity, you may assume that the can fit in one byte, so only a single byte would need to be read from and written to the pipes. -* The parent should send its to the child through the pipe and the child should print "child: received ping from ". -* The child should then send its to the parent and the parent should print "parent: received pong from ". +* The processes should use pipes in order to share the \ with each-other. For simplicity, you may assume that the \ can fit in one byte, so only a single byte would need to be read from and written to the pipes. +* The parent should send its \ to the child through the pipe and the child should print "child: received ping from \". +* The child should then send its \ to the parent and the parent should print "parent: received pong from \". * Both processes should exit and terminate correctly. ``` @@ -225,4 +225,4 @@ Breakpoint 1 at 0x0: file /xv6/user/src/lab0/helloworld.c, line 8. (gdb) continue Continuing. -``` \ No newline at end of file +``` -- 2.47.3