Changeset c739102 in mainline for kernel/generic/include/mm/as.h


Ignore:
Timestamp:
2012-11-21T23:26:22Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
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.
Message:

Mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/mm/as.h

    rbebf97d rc739102  
    6161#define USER_ADDRESS_SPACE_END      USER_ADDRESS_SPACE_END_ARCH
    6262
    63 #ifdef USTACK_ADDRESS_ARCH
    64         #define USTACK_ADDRESS  USTACK_ADDRESS_ARCH
    65 #else
    66         #define USTACK_ADDRESS  (USER_ADDRESS_SPACE_END - (STACK_SIZE - 1))
    67 #endif
    68 
    6963/** Kernel address space. */
    7064#define FLAG_AS_KERNEL  (1 << 0)
     
    224218        void (* destroy)(as_area_t *);
    225219
     220        bool (* is_resizable)(as_area_t *);
     221        bool (* is_shareable)(as_area_t *);
     222
    226223        int (* page_fault)(as_area_t *, uintptr_t, pf_access_t);
    227224        void (* frame_free)(as_area_t *, uintptr_t, uintptr_t);
Note: See TracChangeset for help on using the changeset viewer.