changeset 813:f3f982bc271c

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 May 2010 00:25:00 +0900
parents ff684304e1d3 (current diff) df36d41d5135 (diff)
children f3aa4ba65b76
files
diffstat 3 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Renderer/Engine/KeyID.h	Sun May 23 00:25:00 2010 +0900
@@ -0,0 +1,3 @@
+    NONE,
+    HOLD,
+    PUSH,
--- a/example/word_count_test/main.cc	Sun May 23 00:23:46 2010 +0900
+++ b/example/word_count_test/main.cc	Sun May 23 00:25:00 2010 +0900
@@ -163,6 +163,7 @@
     w->self = w;
     w->task_blocks = blocks;
     w->task_spwaned = 0;
+    //w->waiting = 0;
 
     /*sizeはdivision_sizeの倍数にしている。*/
     w->size = st_mmap.size;
--- a/example/word_count_test/spe/Exec.cc	Sun May 23 00:23:46 2010 +0900
+++ b/example/word_count_test/spe/Exec.cc	Sun May 23 00:25:00 2010 +0900
@@ -12,7 +12,8 @@
     char *i_data = (char *)rbuf;
     unsigned long long *o_data = (unsigned long long*)wbuf;
     unsigned long long *head_tail_flag = o_data +2;
-    int length = s->read_size();
+    //int length = s->read_size();
+    int length = s->get_param(0);
     int word_flag = 0;
     int word_num = 0;
     int line_num = 0;