Mercurial > hg > Game > Cerium
view TaskManager/kernel/memory/MemorySegment.h @ 369:93b33cecba37 draft
change TaskManager.cc
author | aaa |
---|---|
date | Tue, 28 Jul 2009 19:42:59 +0900 |
parents | 1a80a2aa696c |
children | 4748fd7dcd89 |
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