Changeset ae6021d in mainline for uspace/lib/c/generic/as.c
- Timestamp:
- 2016-09-02T15:44:09Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e755b3f
- Parents:
- c1f7a315
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/as.c
rc1f7a315 rae6021d 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 amappable area.50 * @param size Size of the area.51 * @param flags Flags describing type of the area.52 * @param pager If non-negative, phone to the external pager backing the area.53 * If AS_AREA_UNPAGED (-1), the area is anonymous.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). 54 54 * 55 55 * @return Starting virtual address of the created area on success. … … 57 57 * 58 58 */ 59 void *as_area_create(void *base, size_t size, unsigned int flags, int pager) 59 void *as_area_create(void *base, size_t size, unsigned int flags, 60 as_area_pager_info_t *pager_info) 60 61 { 61 62 return (void *) __SYSCALL5(SYS_AS_AREA_CREATE, (sysarg_t) base, 62 63 (sysarg_t) size, (sysarg_t) flags, (sysarg_t) __entry, 63 (sysarg_t) pager );64 (sysarg_t) pager_info); 64 65 } 65 66
Note:
See TracChangeset
for help on using the changeset viewer.