From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- xbmc/threads/IThreadImpl.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 xbmc/threads/IThreadImpl.h (limited to 'xbmc/threads/IThreadImpl.h') diff --git a/xbmc/threads/IThreadImpl.h b/xbmc/threads/IThreadImpl.h new file mode 100644 index 0000000..f631c79 --- /dev/null +++ b/xbmc/threads/IThreadImpl.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2005-2022 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include "threads/Thread.h" + +#include +#include +#include + +class IThreadImpl +{ +public: + virtual ~IThreadImpl() = default; + + static std::unique_ptr CreateThreadImpl(std::thread::native_handle_type handle); + + /*! + * \brief Set the thread name and other info (platform dependent) + * + */ + virtual void SetThreadInfo(const std::string& name) = 0; + + /*! + * \brief Set the thread priority via the native threading library + * + */ + virtual bool SetPriority(const ThreadPriority& priority) = 0; + +protected: + IThreadImpl(std::thread::native_handle_type handle) : m_handle(handle) {} + + std::thread::native_handle_type m_handle; + +private: + IThreadImpl() = delete; +}; -- cgit v1.2.3