| 306 | |
| 307 | |
| 308 | static void WorkerActionCallback(void* ctxt) |
| 309 | { |
| 310 | WorkerThreadActionContext* action = (WorkerThreadActionContext*)ctxt; |
| 311 | action->action(); |
| 312 | delete action; |
| 313 | } |
| 314 | |
| 315 | |
| 316 | void BinaryNinja::WorkerEnqueue(const function<void()>& action, const std::string& name) |