| 107 | } |
| 108 | |
| 109 | bool LaunchWorker(bool master_cpu=false) |
| 110 | { |
| 111 | auto func = std::bind(&WorkerThread::DoWork, this,master_cpu); |
| 112 | worker_ = new std::thread(func); |
| 113 | return true; |
| 114 | } |
| 115 | |
| 116 | void Activate(int dispatch_cpu) |
| 117 | { |
no outgoing calls
no test coverage detected