mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Added gsl_thread.h (raii_thread & detached_thread)
This commit is contained in:
parent
7c378aaa71
commit
01692e579e
@ -38,17 +38,47 @@ namespace gsl
|
|||||||
|
|
||||||
class detached_thread
|
class detached_thread
|
||||||
{
|
{
|
||||||
|
friend void swap(detached_thread& t1, detached_thread& t2) noexcept;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
detached_thread() noexcept = default;
|
||||||
|
|
||||||
detached_thread(detached_thread const&) = delete;
|
detached_thread(detached_thread const&) = delete;
|
||||||
|
detached_thread(detached_thread&& other): t(std::move(other.t)) {}
|
||||||
|
|
||||||
|
detached_thread(std::thread const&) = delete;
|
||||||
|
detached_thread(std::thread&& other) noexcept: t(std::move(other)) { t.detach(); }
|
||||||
|
|
||||||
|
detached_thread& operator=(detached_thread const&) = delete;
|
||||||
|
detached_thread& operator=(detached_thread&& other) noexcept { t = std::move(other.t); return *this; }
|
||||||
|
|
||||||
|
detached_thread& operator=(std::thread const&) = delete;
|
||||||
|
detached_thread& operator=(std::thread&& other) noexcept { t = std::move(other); t.detach(); return *this; }
|
||||||
|
|
||||||
template<typename Callable, typename... Args>
|
template<typename Callable, typename... Args>
|
||||||
explicit detached_thread(Callable&& f, Args&&... args)
|
explicit detached_thread(Callable&& f, Args&&... args)
|
||||||
: t(std::forward<Callable>(f), std::forward<Args>(args)...) { t.detach(); }
|
: t(std::forward<Callable>(f), std::forward<Args>(args)...) { t.detach(); }
|
||||||
|
|
||||||
|
bool joinable() const { return t.joinable(); }
|
||||||
|
|
||||||
|
std::thread::id get_id() const noexcept { return t.get_id(); }
|
||||||
|
|
||||||
|
std::thread::native_handle_type native_handle() { return t.native_handle(); }
|
||||||
|
|
||||||
|
void join() { t.join(); }
|
||||||
|
|
||||||
|
void swap(detached_thread& other) noexcept { using std::swap; swap(t, other.t); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::thread t;
|
std::thread t;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void swap(detached_thread& t1, detached_thread& t2) noexcept
|
||||||
|
{
|
||||||
|
using std::swap;
|
||||||
|
swap(t1.t, t2.t);
|
||||||
|
}
|
||||||
|
|
||||||
class raii_thread
|
class raii_thread
|
||||||
{
|
{
|
||||||
friend void swap(raii_thread& t1, raii_thread& t2) noexcept;
|
friend void swap(raii_thread& t1, raii_thread& t2) noexcept;
|
||||||
|
Loading…
Reference in New Issue
Block a user