mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Reorganization directory structure [3/n]
Change-Id: If3dfa3f6007f8810a6a1ae1a4f0c7da38544648d
This commit is contained in:
21
shared/source/os_interface/windows/os_thread_win.h
Normal file
21
shared/source/os_interface/windows/os_thread_win.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "os_interface/os_thread.h"
|
||||
|
||||
#include <thread>
|
||||
|
||||
namespace NEO {
|
||||
class ThreadWin : public Thread {
|
||||
public:
|
||||
ThreadWin(std::thread *thread);
|
||||
void join() override;
|
||||
|
||||
protected:
|
||||
std::unique_ptr<std::thread> thread;
|
||||
};
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user