comparison TaskManager/Cell/CellTaskManagerImpl.h @ 957:559d041313dc

quue info working on Cell.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 04 Aug 2010 17:07:37 +0900
parents 9989dd7b9ac2
children
comparison
equal deleted inserted replaced
956:15026ebf7a17 957:559d041313dc
10 /* constructor */ 10 /* constructor */
11 CellTaskManagerImpl(int num = 1) : TaskManagerImpl(num) {} 11 CellTaskManagerImpl(int num = 1) : TaskManagerImpl(num) {}
12 ~CellTaskManagerImpl(); 12 ~CellTaskManagerImpl();
13 13
14 /* variables */ 14 /* variables */
15 QueueInfo<TaskList> *taskListInfo; 15 QueueInfo<TaskList> **taskListInfo;
16 QueueInfo<TaskList> *speTaskList; // running task 16 QueueInfo<TaskList> **speTaskList; // running task
17 17
18 SpeThreads *speThreads; 18 SpeThreads *speThreads;
19 FifoTaskManagerImpl *ppeManager; 19 FifoTaskManagerImpl *ppeManager;
20 int spe_running; 20 int spe_running;
21 21