Changeset afa6e74 in mainline for libc/include/as.h
- Timestamp:
- 2006-05-16T23:37:58Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04a73cdf
- Parents:
- 6efe0ddf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/include/as.h
r6efe0ddf rafa6e74 32 32 #include <types.h> 33 33 #include <task.h> 34 #include <kernel/arch/mm/as.h> 34 35 #include <kernel/mm/as.h> 36 37 #define USER_ADDRESS_SPACE_SIZE_ARCH (USER_ADDRESS_SPACE_END_ARCH-USER_ADDRESS_SPACE_START_ARCH+1) 35 38 36 39 extern void *as_area_create(void *address, size_t size, int flags); 37 40 extern int as_area_resize(void *address, size_t size, int flags); 38 41 extern int as_area_destroy(void *address); 42 extern void *set_maxheapsize(size_t mhs); 39 43 40 44 #endif
Note:
See TracChangeset
for help on using the changeset viewer.