Changeset 2c2d54a in mainline for uspace/lib/c/include/as.h
- Timestamp:
- 2016-09-02T17:58:05Z (9 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/include/as.h
r4bf0926e r2c2d54a 38 38 #include <sys/types.h> 39 39 #include <abi/mm/as.h> 40 #include <task.h>41 40 #include <libarch/config.h> 42 43 #define AS_AREA_ANY ((void *) -1)44 #define AS_MAP_FAILED ((void *) -1)45 41 46 42 static inline size_t SIZE2PAGES(size_t size) … … 57 53 } 58 54 59 extern void *as_area_create(void *, size_t, unsigned int); 55 extern void *as_area_create(void *, size_t, unsigned int, 56 as_area_pager_info_t *); 60 57 extern int as_area_resize(void *, size_t, unsigned int); 61 58 extern int as_area_change_flags(void *, unsigned int);
Note:
See TracChangeset
for help on using the changeset viewer.