comparison TaskManager/kernel/schedule/SchedTask.h @ 705:55159a5bf2c4

Redering on SIMPLE_TASK
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 14 Dec 2009 20:00:42 +0900
parents 61b59376aec5
children 56487849ea2d
comparison
equal deleted inserted replaced
704:6d497c098455 705:55159a5bf2c4
126 126
127 127
128 /*! 128 /*!
129 SPU用の get_input, get_output 129 SPU用の get_input, get_output
130 */ 130 */
131 #ifndef SIMPLE_TASK
132 void* get_input(int index) { 131 void* get_input(int index) {
133 return get_input(readbuf, index); 132 return get_input(readbuf, index);
134 } 133 }
135 134
136 void* get_output(int index) { 135 void* get_output(int index) {
137 return get_output(writebuf, index); 136 return get_output(writebuf, index);
138 } 137 }
139 #endif
140 138
141 // user 139 // user
142 HTaskPtr create_task(int cmd); 140 HTaskPtr create_task(int cmd);
143 HTaskPtr create_task(int cmd, memaddr r, long rs, memaddr w, long ws); 141 HTaskPtr create_task(int cmd, memaddr r, long rs, memaddr w, long ws);
144 142