Changeset 37e7d2b9 in mainline for generic/include/mm/as.h


Ignore:
Timestamp:
2006-03-16T14:46:06Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
dabe6333
Parents:
e898a8d7
Message:

Restore interrupts when failing in as_remap().
Add check_area_conflicts() that checks whether address area overlaps with other areas.
Refuse to create writeable executable address space areas.
Rename as_area_t::size to as_area_t::pages.

File:
1 edited

Legend:

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

    re898a8d7 r37e7d2b9  
    6363        link_t link;
    6464        int flags;
    65         size_t size;            /**< Size of this area in multiples of PAGE_SIZE. */
     65        count_t pages;          /**< Size of this area in multiples of PAGE_SIZE. */
    6666        __address base;         /**< Base address of this area. */
    6767};
Note: See TracChangeset for help on using the changeset viewer.