| 107 | } |
| 108 | |
| 109 | port::Status Platform::Initialize( |
| 110 | const std::map<string, string> &platform_options) { |
| 111 | if (!platform_options.empty()) { |
| 112 | return port::Status(port::error::UNIMPLEMENTED, |
| 113 | "this platform does not support custom initialization"); |
| 114 | } |
| 115 | return port::Status::OK(); |
| 116 | } |
| 117 | |
| 118 | port::Status Platform::ForceExecutorShutdown() { |
| 119 | return port::Status(port::error::UNIMPLEMENTED, |
no test coverage detected