Rename files with reference and descriptor code

This commit is contained in:
EnderIce2 2024-04-01 04:40:49 +03:00
parent a49e5e9913
commit 7b5a486391
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
3 changed files with 5 additions and 5 deletions

View File

@ -7,19 +7,19 @@
### /storage ### /storage
- `node.cpp` - `node.cpp`
- **ref_node <=> device** - **Node <=> device**
- Handles open/close/read/write operations for the device - Handles open/close/read/write operations for the device and holds information about the file
<br> <br>
- `ref_node.cpp` - `reference.cpp`
- **kernel/user <=> node.cpp** - **kernel/user <=> node.cpp**
- Maintains the count of references to a node and the seek position - Maintains the count of references to a node and the seek position
<br> <br>
- `file_descriptor.cpp` - `descriptor.cpp`
- **user <=> ref_node.cpp** - **user <=> reference.cpp**
- Manages the file descriptor table for user processes - Manages the file descriptor table for user processes
### /storage/fs ### /storage/fs