| 110 | } |
| 111 | |
| 112 | int heavy_complete(void*, OutOfOrderContext* args) { |
| 113 | while (processing_queue.empty()) { thread_yield(); } //waiting till something comming |
| 114 | args->tag = processing_queue.front(); |
| 115 | processing_queue.pop(); |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | int process_thread() { |
| 120 | while (issue_list.size()) { |
nothing calls this directly
no test coverage detected