Changeset 9179d0a in mainline for generic/src/mm/as.c


Ignore:
Timestamp:
2006-04-27T17:13:49Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
040e4e9
Parents:
eaa202a
Message:

Add some @file doxygen comments and improve already existing comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/mm/as.c

    reaa202a r9179d0a  
    2727 */
    2828
    29 /*
     29/**
     30 * @file        as.c
     31 * @brief       Address space related functions.
     32 *
    3033 * This file contains address space manipulation functions.
    3134 * Roughly speaking, this is a higher-level client of
    3235 * Virtual Address Translation (VAT) subsystem.
     36 *
     37 * Functionality provided by this file allows one to
     38 * create address space and create, resize and share
     39 * address space areas.
     40 *
     41 * @see page.c
     42 *
    3343 */
    3444
     
    685695 *
    686696 * @param as Address space.
    687  * @param as_locked If false, do not attempt to lock as->lock.
     697 * @param lock If false, do not attempt to lock as->lock.
    688698 */
    689699void page_table_lock(as_t *as, bool lock)
     
    698708 *
    699709 * @param as Address space.
    700  * @param as_locked If false, do not attempt to unlock as->lock.
     710 * @param unlock If false, do not attempt to unlock as->lock.
    701711 */
    702712void page_table_unlock(as_t *as, bool unlock)
Note: See TracChangeset for help on using the changeset viewer.