Mercurial > hg > Members > kono > Cerium
view TaskManager/kernel/memory/MemorySegment.h @ 369:03ae2929c931
change TaskManager.cc
author | aaa |
---|---|
date | Tue, 28 Jul 2009 19:42:59 +0900 |
parents | 126f90e8582c |
children | 4435c9990988 |
line wrap: on
line source
#ifndef MEMLSEG #define MEMLSEG #include "types.h" class MemorySegment { public: MemorySegment* next; MemorySegment* prev; uint32 size; uint32 address; uint32 dummy; }; #endif