Files
compute-runtime/shared/source/os_interface/linux/os_thread_linux.h
Mateusz Jablonski f3cb94c491 Add missing destructors to os thread classes
Change-Id: If1d513fbeaa2b1d7a353f3321f992a16e8f3a80e
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-05-13 14:09:35 +02:00

23 lines
388 B
C++

/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/os_interface/os_thread.h"
#include <pthread.h>
namespace NEO {
class ThreadLinux : public Thread {
public:
ThreadLinux(pthread_t threadId);
void join() override;
~ThreadLinux() override = default;
protected:
pthread_t threadId;
};
} // namespace NEO