| 112 | } |
| 113 | |
| 114 | Thread* StartThread(const ThreadOptions& thread_options, const string& name, |
| 115 | std::function<void()> fn) override { |
| 116 | return new StdThread(thread_options, name, fn); |
| 117 | } |
| 118 | |
| 119 | int32 GetCurrentThreadId() override { |
| 120 | #ifdef __APPLE__ |
no outgoing calls