Changeset 9179d0a in mainline for generic/src/mm/as.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/as.c
reaa202a r9179d0a 27 27 */ 28 28 29 /* 29 /** 30 * @file as.c 31 * @brief Address space related functions. 32 * 30 33 * This file contains address space manipulation functions. 31 34 * Roughly speaking, this is a higher-level client of 32 35 * 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 * 33 43 */ 34 44 … … 685 695 * 686 696 * @param as Address space. 687 * @param as_lockedIf false, do not attempt to lock as->lock.697 * @param lock If false, do not attempt to lock as->lock. 688 698 */ 689 699 void page_table_lock(as_t *as, bool lock) … … 698 708 * 699 709 * @param as Address space. 700 * @param as_lockedIf false, do not attempt to unlock as->lock.710 * @param unlock If false, do not attempt to unlock as->lock. 701 711 */ 702 712 void page_table_unlock(as_t *as, bool unlock)
Note:
See TracChangeset
for help on using the changeset viewer.