Changeset ae318d3 in mainline for kernel/generic/include/ddi/ddi.h
- Timestamp:
- 2009-02-16T18:50:48Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 06da55b
- Parents:
- 17f168e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/ddi.h
r17f168e rae318d3 39 39 #include <arch/types.h> 40 40 #include <proc/task.h> 41 #include <adt/list.h> 41 42 42 43 /** Structure representing contiguous physical memory area. */ 43 44 typedef struct { 44 uintptr_t pbase; 45 uintptr_t vbase; /**< Virtual base ofthe area. */46 count_t frames; /**< Number of frames in the area. */47 bool cacheable; /**< Cacheability.*/45 uintptr_t pbase; /**< Physical base of the area. */ 46 pfn_t frames; /**< Number of frames in the area. */ 47 48 link_t link; /**< Linked list link */ 48 49 } parea_t; 49 50
Note:
See TracChangeset
for help on using the changeset viewer.