| 848 | } |
| 849 | |
| 850 | void CompiledTransformation::execute() { |
| 851 | mgb_assert(m_executable != nullptr); |
| 852 | { |
| 853 | MGB_LOCK_GUARD(m_mutex); |
| 854 | m_graph_status = 1; |
| 855 | } |
| 856 | m_cv.notify_all(); |
| 857 | } |
| 858 | |
| 859 | void CompiledTransformation::wait() { |
| 860 | try { |
no outgoing calls