| 97 | }; |
| 98 | |
| 99 | inline TAutoPtr<TWorkerThread> StartThread(std::function<void()> func) { |
| 100 | TAutoPtr<TWorkerThread> thread = new TWorkerThread(func); |
| 101 | thread->Start(); |
| 102 | return thread; |
| 103 | } |
| 104 | |
| 105 | //////////////////////////////////////////////////////////////////////////////// |
| 106 |