Changeset 9179d0a in mainline for generic/src/mm/page.c
- Timestamp:
- 2006-04-27T17:13:49Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 040e4e9
- Parents:
- eaa202a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/mm/page.c
reaa202a r9179d0a 27 27 */ 28 28 29 /* 30 * Virtual Address Translation subsystem. 29 /** 30 * @file page.c 31 * @brief Virtual Address Translation subsystem. 32 * 33 * This file contains code for creating, destroying and searching 34 * mappings between virtual addresses and physical addresses. 35 * Functions here are mere wrappers that call the real implementation. 36 * They however, define the single interface. 31 37 */ 32 38 … … 74 80 /** Insert mapping of page to frame. 75 81 * 76 * Map virtual address @page to physical address @frame77 * using @flags. Allocate and setup any missing page tables.82 * Map virtual address page to physical address frame 83 * using flags. Allocate and setup any missing page tables. 78 84 * 79 85 * The page table must be locked and interrupts must be disabled. … … 94 100 /** Remove mapping of page. 95 101 * 96 * Remove any mapping of @page within address space @as.102 * Remove any mapping of page within address space as. 97 103 * TLB shootdown should follow in order to make effects of 98 104 * this call visible.
Note:
See TracChangeset
for help on using the changeset viewer.