| 69 | { |
| 70 | public: |
| 71 | CPUDevice(const char* dev_name, const struct cpu_info* dev_def) : Device(dev_name), cpu_info_(dev_def) |
| 72 | { |
| 73 | master_thread_ = nullptr; |
| 74 | done_ = 0; |
| 75 | request_ = 0; |
| 76 | |
| 77 | /* backend runner */ |
| 78 | backend_runner_.AttachCPUDevice(this); |
| 79 | } |
| 80 | |
| 81 | virtual ~CPUDevice() |
| 82 | { |
nothing calls this directly
no test coverage detected