Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/memory/MemorySegment.h @ 550:a9f27334963a draft
old ball_bound fix...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 20 Oct 2009 21:18:28 +0900 |
parents | b6fce69839b5 |
children | d2772feb34e3 |
rev | line source |
---|---|
369 | 1 #ifndef MEMLSEG |
2 #define MEMLSEG | |
3 #include "types.h" | |
368 | 4 |
366 | 5 class MemorySegment { |
369 | 6 public: |
366 | 7 MemorySegment* next; |
8 MemorySegment* prev; | |
387
b6fce69839b5
no compile error but not worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
383
diff
changeset
|
9 uint16 tag; |
b6fce69839b5
no compile error but not worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
383
diff
changeset
|
10 uint16 size; |
370 | 11 memaddr address; |
12 void* data; | |
368 | 13 }; |
14 | |
387
b6fce69839b5
no compile error but not worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
383
diff
changeset
|
15 typedef MemorySegment *MemorySegmentPtr; |
383
b3fb0013e6b2
fix header, MemHash in kernel
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
370
diff
changeset
|
16 |
368 | 17 #endif |