Mercurial > hg > Members > kono > Cerium
comparison TaskManager/kernel/schedule/SchedTask.cc @ 706:e4d2b823903c simple-task-regression
no compile error on Cell. Regression Test.
Cell failed some how.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 14 Dec 2009 20:21:59 +0900 |
parents | 6d497c098455 |
children | 56487849ea2d |
comparison
equal
deleted
inserted
replaced
705:55159a5bf2c4 | 706:e4d2b823903c |
---|---|
282 #else | 282 #else |
283 | 283 |
284 void* SchedTask::get_input(void *buff, int index) { | 284 void* SchedTask::get_input(void *buff, int index) { |
285 printf("Cannot use inData in SimpleTask use TaskArray\n"); | 285 printf("Cannot use inData in SimpleTask use TaskArray\n"); |
286 return NULL; } | 286 return NULL; } |
287 memaddr SchedTask::get_inputAddr(int index) { return NULL; } | 287 memaddr SchedTask::get_inputAddr(int index) { return 0; } |
288 int SchedTask::get_inputSize(int index) {return 0; } | 288 int SchedTask::get_inputSize(int index) {return 0; } |
289 void* SchedTask::get_output(void *buff, int index) {return 0; } | 289 void* SchedTask::get_output(void *buff, int index) {return 0; } |
290 memaddr SchedTask::get_outputAddr(int index) { return NULL; } | 290 memaddr SchedTask::get_outputAddr(int index) { return 0; } |
291 int SchedTask::get_outputSize(int index) { return 0; } | 291 int SchedTask::get_outputSize(int index) { return 0; } |
292 memaddr SchedTask::get_param(int index) { return 0; } | 292 memaddr SchedTask::get_param(int index) { return 0; } |
293 | 293 |
294 #endif | 294 #endif |
295 | 295 |