summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/thread/test/sync/futures/promise/set_rvalue_at_thread_exit_pass.cpp
blob: 0b23b4834760826deeb42a8a5fa407fe38dbc74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//===----------------------------------------------------------------------===//
//
//                     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,2014 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/future.hpp>

// class promise<R>

// void promise::set_value_at_thread_exit(R&& p);

#define BOOST_THREAD_VERSION 3

#include <boost/thread/future.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <boost/thread/detail/memory.hpp>
#include <boost/thread/csbl/memory/unique_ptr.hpp>

boost::promise<boost::csbl::unique_ptr<int> > p;
boost::promise<boost::csbl::unique_ptr<int> > p2;
void func()
{
  boost::csbl::unique_ptr<int> uptr(new int(5));
  p.set_value_at_thread_exit(boost::move(uptr));
}
void func2()
{
  p2.set_value_at_thread_exit(boost::csbl::make_unique<int>(5));
}

int main()
{
  {
    boost::future<boost::csbl::unique_ptr<int> > f = p.get_future();
    boost::thread(func).detach();
    BOOST_TEST(*f.get() == 5);
  }
  {
    boost::future<boost::csbl::unique_ptr<int> > f = p2.get_future();
    boost::thread(func2).detach();
    BOOST_TEST(*f.get() == 5);
  }

  return boost::report_errors();
}