From 5c298c0f879bd5c84bbb27051ba03e61a3840406 Mon Sep 17 00:00:00 2001 From: Rohan Bafna Date: Tue, 19 Aug 2025 21:28:05 -0400 Subject: [PATCH] Reword fall 2025 changes --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b17ff0b..635bcfc 100644 --- a/README.md +++ b/README.md @@ -150,16 +150,18 @@ Maximum Memory Size: 0x00000000 ## Extra Credit -Often there are limits to the abstractions that the operating system provides. We explored an -example of this in the previous section where we calculated the maximum memory size of a -user-space program. For extra credit you should calculate the maximum number of files per process -and the maximum files per directory. +Often there are limits to the abstractions that the operating system +provides. We explored an example of this in the previous section where +we calculated the maximum memory size of a user-space program. For +extra credit you should calculate the maximum number of files that can +be opened at once by a single process and the maximum files per +directory. ### Maximum Number of Files Open at Once (moderate) [1 point] Extend `user/src/lab0/limits.c` to calculate the maximum number of -files that can be opened by a single process in xv6. Display the -result as "Maximum Number of Files Open at Once: %d". +files that can be opened at once by a single process in xv6. Display +the result as "Maximum Number of Files Open at Once: %d". *Note: This problem may be more challenging than it may seem at first glance. Keep in mind that, when run by the shell, your program may -- 2.47.3