| //===----------------------------------------------------------------------===// |
| // |
| // 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. |
| // |
| //===----------------------------------------------------------------------===// |
| // |
| // UNSUPPORTED: libcpp-has-no-threads |
| // UNSUPPORTED: c++98, c++03 |
| |
| // <future> |
| |
| // class promise<R> |
| |
| // void promise<void>::set_value_at_thread_exit(); |
| |
| #include <future> |
| #include <memory> |
| #include <cassert> |
| |
| int i = 0; |
| |
| void func(std::promise<void> p) |
| { |
| p.set_value_at_thread_exit(); |
| i = 1; |
| } |
| |
| int main() |
| { |
| { |
| std::promise<void> p; |
| std::future<void> f = p.get_future(); |
| std::thread(func, std::move(p)).detach(); |
| f.get(); |
| assert(i == 1); |
| } |
| } |