/* * Copyright (C) 2018-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "runtime/os_interface/os_thread.h" #include namespace NEO { class ThreadWin : public Thread { public: ThreadWin(std::thread *thread); void join() override; protected: std::unique_ptr thread; }; } // namespace NEO