Changeset 2c2d54a in mainline for uspace/lib/c/generic/as.c
- Timestamp:
- 2016-09-02T17:58:05Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4c3602c4
- Parents:
- 4bf0926e (diff), 3233adb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/as.c
r4bf0926e r2c2d54a 45 45 /** Create address space area. 46 46 * 47 * @param base Starting virtual address of the area. 48 * If set to AS_AREA_ANY ((void *) -1), 49 * the kernel finds a mappable area. 50 * @param size Size of the area. 51 * @param flags Flags describing type of the area. 47 * @param base Starting virtual address of the area. 48 * If set to AS_AREA_ANY ((void *) -1), the kernel finds a 49 * mappable area. 50 * @param size Size of the area. 51 * @param flags Flags describing type of the area. 52 * @param pager_info Pager info structure or AS_AREA_UNPAGED (NULL) if the area 53 * is not paged (i.e. anonymous). 52 54 * 53 55 * @return Starting virtual address of the created area on success. … … 55 57 * 56 58 */ 57 void *as_area_create(void *base, size_t size, unsigned int flags) 59 void *as_area_create(void *base, size_t size, unsigned int flags, 60 as_area_pager_info_t *pager_info) 58 61 { 59 return (void *) __SYSCALL4(SYS_AS_AREA_CREATE, (sysarg_t) base, 60 (sysarg_t) size, (sysarg_t) flags, (sysarg_t) __entry); 62 return (void *) __SYSCALL5(SYS_AS_AREA_CREATE, (sysarg_t) base, 63 (sysarg_t) size, (sysarg_t) flags, (sysarg_t) __entry, 64 (sysarg_t) pager_info); 61 65 } 62 66
Note:
See TracChangeset
for help on using the changeset viewer.