提交 b8029fd6 编写于 作者: Y yuyang18

Follow comments

上级 d1d825ee
......@@ -101,9 +101,15 @@ FeedFetchList FastThreadedSSAGraphExecutor::Run(
while (num_complete != op_deps->size()) {
size_t num_comp = complete_q.Pop();
if (num_comp == -1UL) {
int remaining = remaining_;
for (int i = 0; i < remaining; ++i) {
complete_q.Pop();
int remaining = 0;
while (true) {
remaining = remaining_;
if (remaining == 0) {
break;
}
for (int i = 0; i < remaining; ++i) {
complete_q.Pop();
}
}
exception_.ReThrow();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册