Mercurial > hg > Members > kono > Cerium
view TaskManager/kernel/memory/MemorySegment.h @ 387:5e2d30bfbf23
no compile error but not worked.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 06 Aug 2009 22:40:52 +0900 |
parents | 25c820b6060e |
children | 997d2a73a758 |
line wrap: on
line source
#ifndef MEMLSEG #define MEMLSEG #include "types.h" class MemorySegment { public: MemorySegment* next; MemorySegment* prev; uint16 tag; uint16 size; memaddr address; void* data; }; typedef MemorySegment *MemorySegmentPtr; #endif