llvm-project/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/detach.pass.cpp

91 lines
1.6 KiB
C++
Raw Normal View History

2010-05-12 03:42:16 +08:00
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
2010-05-12 03:42:16 +08:00
//
2010-11-17 06:09:02 +08:00
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
2010-05-12 03:42:16 +08:00
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: libcpp-has-no-threads
2010-05-12 03:42:16 +08:00
// <thread>
// class thread
// void detach();
#include <thread>
#include <atomic>
#include <system_error>
2010-05-12 03:42:16 +08:00
#include <cassert>
#include "test_macros.h"
std::atomic_bool done(false);
2010-05-12 03:42:16 +08:00
class G
{
int alive_;
bool done_;
2010-05-12 03:42:16 +08:00
public:
static int n_alive;
static bool op_run;
G() : alive_(1), done_(false)
{
++n_alive;
}
G(const G& g) : alive_(g.alive_), done_(false)
{
++n_alive;
}
~G()
{
alive_ = 0;
--n_alive;
if (done_) done = true;
}
2010-05-12 03:42:16 +08:00
void operator()()
{
assert(alive_ == 1);
assert(n_alive >= 1);
2010-05-12 03:42:16 +08:00
op_run = true;
done_ = true;
2010-05-12 03:42:16 +08:00
}
};
int G::n_alive = 0;
bool G::op_run = false;
void foo() {}
2010-05-12 03:42:16 +08:00
int main()
{
{
G g;
std::thread t0(g);
2010-05-12 03:42:16 +08:00
assert(t0.joinable());
t0.detach();
assert(!t0.joinable());
while (!done) {}
2010-05-12 03:42:16 +08:00
assert(G::op_run);
assert(G::n_alive == 1);
2010-05-12 03:42:16 +08:00
}
assert(G::n_alive == 0);
#ifndef TEST_HAS_NO_EXCEPTION
{
std::thread t0(foo);
assert(t0.joinable());
t0.detach();
assert(!t0.joinable());
try {
t0.detach();
} catch (std::system_error const& ec) {
}
}
#endif
2010-05-12 03:42:16 +08:00
}