diff TaskManager/kernel/schedule/Scheduler.cc @ 629:8843edf37c0e

Cell 64 bit tried, but not yet worked. Cell's list DMA is 32bit.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 18 Nov 2009 13:32:58 +0900
parents 60aa3f241b10
children 0558abba673c
line wrap: on
line diff
--- a/TaskManager/kernel/schedule/Scheduler.cc	Tue Nov 17 01:35:12 2009 +0900
+++ b/TaskManager/kernel/schedule/Scheduler.cc	Wed Nov 18 13:32:58 2009 +0900
@@ -39,7 +39,7 @@
     }
 
     for (int i = 0; i < MAX_MAINMEM_AREA; i++) {
-        mainMemList[i] = NULL;
+        mainMemList[i] = (memaddr)NULL;
     }
 
 
@@ -168,7 +168,7 @@
  * mainMem_alloc で確保したメインメモリの領域アドレスを返す。
  * これは Fifo, Cell で共通
  */
-void*
+memaddr
 Scheduler::mainMem_get(int id)
 {
     return mainMemList[id];