| 701 | } |
| 702 | |
| 703 | void SubgraphTask::OnSyncTaskDone(void) |
| 704 | { |
| 705 | input_wait_count_ = saved_input_wait_count_; |
| 706 | |
| 707 | for(unsigned int i = 0; i < sub_graph->output_nodes.size(); i++) |
| 708 | { |
| 709 | Node* node = sub_graph->output_nodes[i]; |
| 710 | OnOutputNodeDone(node, true); |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | #include <unistd.h> |
| 715 |
no test coverage detected