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