Changeset 8f80c77 in mainline for kernel/generic
- Timestamp:
- 2010-06-08T21:26:22Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1113c9e
- Parents:
- 2d3ddad
- Location:
- kernel/generic/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/as.c
r2d3ddad r8f80c77 801 801 /** Check access mode for address space area. 802 802 * 803 * The address space area must be locked prior to this call.804 *805 803 * @param area Address space area. 806 804 * @param access Access mode. … … 1214 1212 /** Compute flags for virtual address translation subsytem. 1215 1213 * 1216 * The address space area must be locked.1217 * Interrupts must be disabled.1218 *1219 1214 * @param area Address space area. 1220 1215 * … … 1316 1311 1317 1312 /** Find address space area and lock it. 1318 *1319 * The address space must be locked and interrupts must be disabled.1320 1313 * 1321 1314 * @param as Address space. … … 1381 1374 1382 1375 /** Check area conflicts with other areas. 1383 *1384 * The address space must be locked and interrupts must be disabled.1385 1376 * 1386 1377 * @param as Address space. -
kernel/generic/src/mm/backend_elf.c
r2d3ddad r8f80c77 269 269 * Otherwise only portions of the area that are not backed by the ELF image 270 270 * are put into the pagemap. 271 *272 * The address space and address space area must be locked prior to the call.273 271 * 274 272 * @param area Address space area. -
kernel/generic/src/mm/page.c
r2d3ddad r8f80c77 108 108 * using flags. Allocate and setup any missing page tables. 109 109 * 110 * The page table must be locked and interrupts must be disabled.111 *112 110 * @param as Address space to wich page belongs. 113 111 * @param page Virtual address of the page to be mapped. … … 138 136 * this call visible. 139 137 * 140 * The page table must be locked and interrupts must be disabled.141 *142 138 * @param as Address space to wich page belongs. 143 139 * @param page Virtual address of the page to be demapped. … … 162 158 * Find mapping for virtual page. 163 159 * 164 * The page table must be locked and interrupts must be disabled.165 *166 160 * @param as Address space to wich page belongs. 167 161 * @param page Virtual page. -
kernel/generic/src/sysinfo/stats.c
r2d3ddad r8f80c77 195 195 * 196 196 * Summarize task information into task statistics. 197 * Task lock should be held and interrupts disabled198 * before executing this function.199 197 * 200 198 * @param task Task. … … 297 295 * 298 296 * Summarize thread information into thread statistics. 299 * Thread lock should be held and interrupts disabled300 * before executing this function.301 297 * 302 298 * @param thread Thread.
Note:
See TracChangeset
for help on using the changeset viewer.