Mercurial > hg > Members > kono > Cerium
view include/TaskManager/CellScheduler.h @ 313:c9f8cfcdc5c2
fix ppu mail box waiting (mainMem allocate)
author | kono@localhost.localdomain |
---|---|
date | Tue, 09 Jun 2009 00:10:36 +0900 |
parents | 7075842aa155 |
children |
line wrap: on
line source
#ifndef INCLUDED_CELL_SCHEDULER #define INCLUDED_CELL_SCHEDULER #include "base.h" #include "Scheduler.h" class CellScheduler : public Scheduler { public: BASE_NEW_DELETE(CellScheduler); void init_impl(void); void *allocate(int size); void mainMem_alloc(int id, int size); void mainMem_wait(void); private: int mainMemNum; }; #endif