Changeset 5892ec1 in mainline for uspace/lib/c/generic/fibril.c


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
  • uspace/lib/c/generic/fibril.c

    r9a9c805 r5892ec1  
    274274            FIBRIL_INITIAL_STACK_PAGES_NO * getpagesize(),
    275275            AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE | AS_AREA_GUARD |
    276             AS_AREA_NORESERVE);
     276            AS_AREA_LATE_RESERVE);
    277277        if (fibril->stack == (void *) -1) {
    278278                fibril_teardown(fibril);
Note: See TracChangeset for help on using the changeset viewer.