1 //===----------------------------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is dual licensed under the MIT and the University of Illinois Open 6 // Source Licenses. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // UNSUPPORTED: libcpp-has-no-threads 11 12 // <future> 13 14 // class promise<R> 15 16 // void promise<void>::set_value_at_thread_exit(); 17 18 #include <future> 19 #include <memory> 20 #include <cassert> 21 22 int i = 0; 23 func(std::promise<void> p)24void func(std::promise<void> p) 25 { 26 p.set_value_at_thread_exit(); 27 i = 1; 28 } 29 main()30int main() 31 { 32 { 33 std::promise<void> p; 34 std::future<void> f = p.get_future(); 35 std::thread(func, std::move(p)).detach(); 36 f.get(); 37 assert(i == 1); 38 } 39 } 40