Please enable JavaScript.
Coggle requires JavaScript to display documents.
Storage Management - Coggle Diagram
-
-
Protection
The system must be prepared to keep information safe from physical damage and improper access
-
Controlled Access
limiting the types of file access that can be made
- Read
- Write
- Execute
- Append
- Delete
- List
- Attribute change
Memory-Mapped Files
allow a part of the virtual address space to be logically associated with the file.
- Disk block is mapped to a page(s) in memory
- Subsequent reads and writes to the file are handled as routine memory accesses
Sharing the mapping
the virtual memory map of each sharing process points to the same page of physical memory
- Shared memory is often implemented by memory mapping files.