Mercurial > hg > Game > Cerium
view TaskManager/kernel/memory/AddrList.h @ 1546:61164c687b29 draft
fix GpuScheduler flip
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 05 Feb 2013 13:15:46 +0900 |
parents | d7486d6a5e37 |
children |
line wrap: on
line source
#ifndef INCLUDED_ADDR_LIST #define INCLUDED_ADDR_LIST #include "types.h" /* MainMemory 側の MemorySegment に近いかも? Iterator で使う、MainMemory 側の アドレスリスト */ typedef struct AddrList { memaddr addr; AddrList *next; }AddrList, *AddrListPtr; // 8 #endif