comparison TaskManager/kernel/ppe/TaskQueueInfo.cc @ 495:17319af4ee39

fix wakeup_task
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 10 Oct 2009 19:16:09 +0900
parents ec7b6d89b4e4
children 9d225ba0c34f
comparison
equal deleted inserted replaced
494:ec7b6d89b4e4 495:17319af4ee39
180 TaskQueueInfo::empty() 180 TaskQueueInfo::empty()
181 { 181 {
182 return next == this; 182 return next == this;
183 } 183 }
184 184
185 TaskQueue*
186 TaskQueueInfo::getNext(TaskQueue* q)
187 {
188 if (q->next==this) return NULL;
189 return q->next;
190 }
191
192
185 193
186 /* end */ 194 /* end */