changeset 788:821ab210cafa

ugoita!! inData -> outData
author yutaka@localhost.localdomain
date Sat, 24 Apr 2010 19:41:32 +0900
parents 5df90e02e34f
children 03e571289ef3
files TaskManager/kernel/ppe/HTask.h example/word_count/Makefile.def
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/TaskManager/kernel/ppe/HTask.h	Sat Apr 24 17:25:46 2010 +0900
+++ b/TaskManager/kernel/ppe/HTask.h	Sat Apr 24 19:41:32 2010 +0900
@@ -80,7 +80,7 @@
 		 command, index, (unsigned long)addr, size);
 	}
 	Task *t = (Task*)rbuf;
-	t->set_inData_t(index, addr,size);
+	t->set_outData_t(index, addr,size);
     }
     void add_param_t(memaddr param) {
 	Task *t = (Task*)rbuf;
--- a/example/word_count/Makefile.def	Sat Apr 24 17:25:46 2010 +0900
+++ b/example/word_count/Makefile.def	Sat Apr 24 19:41:32 2010 +0900
@@ -7,7 +7,7 @@
 # ex  linux/ps3
 CERIUM = ../../../Cerium
 
-OPT = -O9
+OPT = -g #-O9
 CC      = g++
 CFLAGS  =  -Wall $(OPT)