Changeset c739102 in mainline for kernel/generic/include/mm/as.h
- Timestamp:
- 2012-11-21T23:26:22Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f2c80a
- Parents:
- bebf97d (diff), 1f7753a (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
-
kernel/generic/include/mm/as.h
rbebf97d rc739102 61 61 #define USER_ADDRESS_SPACE_END USER_ADDRESS_SPACE_END_ARCH 62 62 63 #ifdef USTACK_ADDRESS_ARCH64 #define USTACK_ADDRESS USTACK_ADDRESS_ARCH65 #else66 #define USTACK_ADDRESS (USER_ADDRESS_SPACE_END - (STACK_SIZE - 1))67 #endif68 69 63 /** Kernel address space. */ 70 64 #define FLAG_AS_KERNEL (1 << 0) … … 224 218 void (* destroy)(as_area_t *); 225 219 220 bool (* is_resizable)(as_area_t *); 221 bool (* is_shareable)(as_area_t *); 222 226 223 int (* page_fault)(as_area_t *, uintptr_t, pf_access_t); 227 224 void (* frame_free)(as_area_t *, uintptr_t, uintptr_t);
Note:
See TracChangeset
for help on using the changeset viewer.