| 458 | } |
| 459 | |
| 460 | bool VirtualMachineEngine::SchedulerThreadUnsafeEmpty() const { |
| 461 | return pending_instruction_list().thread_unsafe_size() == 0 |
| 462 | && local_pending_instruction_list().empty() && lively_instruction_list_.empty() |
| 463 | && active_stream_list().empty() && probe_list_.thread_unsafe_size() == 0 |
| 464 | && local_probe_list_.empty(); |
| 465 | } |
| 466 | |
| 467 | bool VirtualMachineEngine::SchedulerEmpty() const { |
| 468 | // hook and size will be check in pending_instruction_list().empty(). |
no test coverage detected