Changeset eef75f6 in mainline for generic/include/mm/frame.h


Ignore:
Timestamp:
2005-12-05T19:09:14Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
95498e5
Parents:
61e6c39
Message:

Buddy allocator cleanup and fixes.

  • Add some comments.
  • Update zone information on frames allocation/deallocation.
File:
1 edited

Legend:

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

    r61e6c39 reef75f6  
    5454        __address base;         /**< physical address of the first frame in the frames array */
    5555        frame_t *frames;        /**< array of frame_t structures in this zone */
    56         count_t free_count;     /**< number of frame_t structures in free list */
    57         count_t busy_count;     /**< number of frame_t structures not in free list */
     56        count_t free_count;     /**< number of free frame_t structures */
     57        count_t busy_count;     /**< number of busy frame_t structures */
    5858       
    5959        buddy_system_t * buddy_system; /**< buddy system for the zone */
Note: See TracChangeset for help on using the changeset viewer.