From 182b35deac7e061c981aa2313f4d7466722a3afe Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Fri, 22 Feb 2019 04:29:57 -0600 Subject: [PATCH] added link to reverse; added placeholder for memory allocator --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 08b60c5..f1f552e 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ journey; you'll have to do more on your own to truly become proficient. * [Unix Utilities](https://github.com/remzi-arpacidusseau/ostep-projects/tree/master/initial-utilities) (cat, grep, zip/unzip) * Sort (text-based) * Sort (binary) +* [Reverse](https://github.com/remzi-arpacidusseau/ostep-projects/tree/master/initial-reverse) (very simple reverse program) ### Processes and Scheduling @@ -28,6 +29,8 @@ journey; you'll have to do more on your own to truly become proficient. ### Virtual Memory +* Memory Allocator + ### Concurrency * [Parallel Zip](https://github.com/remzi-arpacidusseau/ostep-projects/tree/master/concurrency-pzip)