Changeset 7f0837c in mainline for genarch


Ignore:
Timestamp:
2006-04-24T12:59:11Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fd8af4b
Parents:
24f3874
Message:

Remove the outdated TODO file.
Improve doxygen comments here and there.

Location:
genarch/src/mm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • genarch/src/mm/page_ht.c

    r24f3874 r7f0837c  
    155155/** Map page to frame using page hash table.
    156156 *
    157  * Map virtual address 'page' to physical address 'frame'
    158  * using 'flags'.
     157 * Map virtual address @page to physical address @frame
     158 * using @flags.
    159159 *
    160160 * The page table must be locked and interrupts must be disabled.
    161161 *
    162  * @param as Address space to which page belongs.
     162 * @param as Address space to which @page belongs.
    163163 * @param page Virtual address of the page to be mapped.
    164164 * @param frame Physical address of memory frame to which the mapping is done.
     
    191191/** Remove mapping of page from page hash table.
    192192 *
    193  * Remove any mapping of 'page' within address space 'as'.
     193 * Remove any mapping of @page within address space @as.
    194194 * TLB shootdown should follow in order to make effects of
    195195 * this call visible.
     
    218218 * The page table must be locked and interrupts must be disabled.
    219219 *
    220  * @param as Address space to wich page belongs.
     220 * @param as Address space to wich @page belongs.
    221221 * @param page Virtual page.
    222222 *
  • genarch/src/mm/page_pt.c

    r24f3874 r7f0837c  
    5050/** Map page to frame using hierarchical page tables.
    5151 *
    52  * Map virtual address 'page' to physical address 'frame'
    53  * using 'flags'.
     52 * Map virtual address @page to physical address @frame
     53 * using @flags.
    5454 *
    5555 * The page table must be locked and interrupts must be disabled.
     
    108108 * The page table must be locked and interrupts must be disabled.
    109109 *
    110  * @param as Address space to wich page belongs.
     110 * @param as Address space to wich @page belongs.
    111111 * @param page Virtual address of the page to be demapped.
    112112 */
     
    228228 * The page table must be locked and interrupts must be disabled.
    229229 *
    230  * @param as Address space to which page belongs.
     230 * @param as Address space to which @page belongs.
    231231 * @param page Virtual page.
    232232 *
Note: See TracChangeset for help on using the changeset viewer.