Changeset 5892ec1 in mainline for abi/include/mm/as.h


Ignore:
Timestamp:
2012-11-07T11:01:22Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c387838
Parents:
9a9c805
Message:

Rename AS_AREA_NORESERVE to AS_AREA_LATE_RESERVE.

This reflects the fact that we still reserve memory for these areas,
but the reservation is done late during the page fault.

File:
1 edited

Legend:

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

    r9a9c805 r5892ec1  
    3737
    3838/** Address space area flags. */
    39 #define AS_AREA_READ       0x01
    40 #define AS_AREA_WRITE      0x02
    41 #define AS_AREA_EXEC       0x04
    42 #define AS_AREA_CACHEABLE  0x08
    43 #define AS_AREA_GUARD      0x10
    44 #define AS_AREA_NORESERVE 0x20
     39#define AS_AREA_READ         0x01
     40#define AS_AREA_WRITE        0x02
     41#define AS_AREA_EXEC         0x04
     42#define AS_AREA_CACHEABLE    0x08
     43#define AS_AREA_GUARD        0x10
     44#define AS_AREA_LATE_RESERVE 0x20
    4545
    4646/** Address space area info exported to uspace. */
Note: See TracChangeset for help on using the changeset viewer.