]> Devi Nivas Git - cs3210-lab0.git/commitdiff
Fix formatting in README
authorAdam Hall <ach@gatech.edu>
Sat, 11 Jan 2025 20:48:01 +0000 (15:48 -0500)
committerGitHub Enterprise <github-noreply@oit.gatech.edu>
Sat, 11 Jan 2025 20:48:01 +0000 (15:48 -0500)
README.md

index b43e74009ba0afa64008e1a466baac16ad3d4831..a1056355bdac7913d8dabad6a8f0fee604fe79c5 100644 (file)
--- 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 <pid> with each-other. For simplicity, you may assume that the <pid> 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 <pid> to the child through the pipe and the child should print "child: received ping from <parent-pid>".
-* The child should then send its <pid> to the parent and the parent should print "parent: received pong from <child-pid>".
+* The processes should use pipes in order to share the \<pid\> with each-other. For simplicity, you may assume that the \<pid\> 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 \<pid\> to the child through the pipe and the child should print "child: received ping from \<parent-pid\>".
+* The child should then send its \<pid\> to the parent and the parent should print "parent: received pong from \<child-pid\>".
 * 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
+```