| 371 | target_->SleepForMicroseconds(micros); |
| 372 | } |
| 373 | Thread* StartThread(const ThreadOptions& thread_options, const string& name, |
| 374 | std::function<void()> fn) override { |
| 375 | return target_->StartThread(thread_options, name, fn); |
| 376 | } |
| 377 | int32 GetCurrentThreadId() override { return target_->GetCurrentThreadId(); } |
| 378 | bool GetCurrentThreadName(string* name) override { |
| 379 | return target_->GetCurrentThreadName(name); |
no outgoing calls