mirror of
https://github.com/boostorg/thread.git
synced 2026-02-21 15:32:09 +00:00
72 lines
1.3 KiB
C++
72 lines
1.3 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// Copyright (C) 2011 Vicente J. Botet Escriba
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// <boost/thread/thread.hpp>
|
|
|
|
// class thread
|
|
|
|
// bool joinable() const;
|
|
|
|
#include <boost/thread/thread.hpp>
|
|
#include <new>
|
|
#include <cstdlib>
|
|
#include <cassert>
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
class G
|
|
{
|
|
int alive_;
|
|
public:
|
|
static int n_alive;
|
|
static bool op_run;
|
|
|
|
G() :
|
|
alive_(1)
|
|
{
|
|
++n_alive;
|
|
}
|
|
G(const G& g) :
|
|
alive_(g.alive_)
|
|
{
|
|
++n_alive;
|
|
}
|
|
~G()
|
|
{
|
|
alive_ = 0;
|
|
--n_alive;
|
|
}
|
|
|
|
void operator()()
|
|
{
|
|
BOOST_TEST(alive_ == 1);
|
|
//BOOST_TEST(n_alive == 1);
|
|
op_run = true;
|
|
}
|
|
};
|
|
|
|
int G::n_alive = 0;
|
|
bool G::op_run = false;
|
|
|
|
int main()
|
|
{
|
|
{
|
|
boost::thread t0( (G()));
|
|
BOOST_TEST(t0.joinable());
|
|
t0.join();
|
|
BOOST_TEST(!t0.joinable());
|
|
}
|
|
|
|
return boost::report_errors();
|
|
}
|
|
|