From e68ce067f78376be3255eacee7f1a2813c710ca4 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Mon, 19 Sep 2022 10:08:01 -0500 Subject: [PATCH] nits --- initial-xv6-tracer/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/initial-xv6-tracer/README.md b/initial-xv6-tracer/README.md index f611a31..0357b52 100644 --- a/initial-xv6-tracer/README.md +++ b/initial-xv6-tracer/README.md @@ -9,9 +9,9 @@ understandable OS and thus an excellent focus for simple projects. This first project is just a warmup, and thus relatively light on work. The goal of the project is simple: to add some system calls to xv6. The first -system call is called **trace(const char *pathname)** and the second is **getcount()**. +system call is called `trace(const char *pathname)` and the second is `getcount()`. The first simply tells the OS to track how many times a particular file, -specified by the name **pathname**, has been opened. The second returns +specified by the name `pathname`, has been opened. The second returns that count. ## Background