diff TaskManager/kernel/ppe/HTaskInfo.cc @ 636:d433fc37587d

Cell Simple Task compiled. but not worked.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 18 Nov 2009 19:09:40 +0900
parents 0558abba673c
children 0692b08f1cd6
line wrap: on
line diff
--- a/TaskManager/kernel/ppe/HTaskInfo.cc	Wed Nov 18 18:36:25 2009 +0900
+++ b/TaskManager/kernel/ppe/HTaskInfo.cc	Wed Nov 18 19:09:40 2009 +0900
@@ -82,11 +82,11 @@
 }
 
 HTaskPtr 
-HTaskInfo::create(int cmd, void *rbuf, int rs, void *wbuf, int ws)
+HTaskInfo::create(int cmd, memaddr rbuf, int rs, memaddr wbuf, int ws)
 {
     HTaskPtr task = create(cmd);
-    task->set_input((memaddr)rbuf, rs);
-    task->set_output((memaddr)wbuf, ws);
+    task->set_input(rbuf, rs);
+    task->set_output(wbuf, ws);
     return task;
 }