2010-05-12 03:42:16 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-12 05:36:01 +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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2014-09-06 03:45:05 +08:00
|
|
|
//
|
|
|
|
// UNSUPPORTED: libcpp-has-no-threads
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
// <thread>
|
|
|
|
|
|
|
|
// class thread
|
|
|
|
|
|
|
|
// void detach();
|
|
|
|
|
|
|
|
#include <thread>
|
2015-08-20 01:37:34 +08:00
|
|
|
#include <atomic>
|
2016-06-02 12:03:31 +08:00
|
|
|
#include <system_error>
|
2010-05-12 03:42:16 +08:00
|
|
|
#include <cassert>
|
|
|
|
|
2016-06-02 12:03:31 +08:00
|
|
|
#include "test_macros.h"
|
|
|
|
|
2015-08-20 01:37:34 +08:00
|
|
|
std::atomic_bool done(false);
|
2015-05-20 07:41:04 +08:00
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
class G
|
|
|
|
{
|
|
|
|
int alive_;
|
2015-05-20 07:41:04 +08:00
|
|
|
bool done_;
|
2010-05-12 03:42:16 +08:00
|
|
|
public:
|
|
|
|
static int n_alive;
|
|
|
|
static bool op_run;
|
|
|
|
|
2015-05-20 07:41:04 +08:00
|
|
|
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);
|
2013-03-26 23:28:33 +08:00
|
|
|
assert(n_alive >= 1);
|
2010-05-12 03:42:16 +08:00
|
|
|
op_run = true;
|
2015-05-20 07:41:04 +08:00
|
|
|
done_ = true;
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int G::n_alive = 0;
|
|
|
|
bool G::op_run = false;
|
|
|
|
|
2016-06-02 12:03:31 +08:00
|
|
|
void foo() {}
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
{
|
2015-05-20 07:41:04 +08:00
|
|
|
G g;
|
|
|
|
std::thread t0(g);
|
2010-05-12 03:42:16 +08:00
|
|
|
assert(t0.joinable());
|
|
|
|
t0.detach();
|
|
|
|
assert(!t0.joinable());
|
2015-05-20 07:41:04 +08:00
|
|
|
while (!done) {}
|
2010-05-12 03:42:16 +08:00
|
|
|
assert(G::op_run);
|
2015-05-20 07:41:04 +08:00
|
|
|
assert(G::n_alive == 1);
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
2015-05-20 07:41:04 +08:00
|
|
|
assert(G::n_alive == 0);
|
2016-06-02 12:03:31 +08:00
|
|
|
#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
|
|
|
}
|