2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libstdc++-v3 / testsuite / performance / 30_threads / future / polling.cc
blob21405e18ad41277982022dcdbbcc21d566f4d1fa
1 // Copyright (C) 2009 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
19 #include <future>
20 #include <thread>
21 #include <testsuite_performance.h>
23 void poll(std::shared_future<void> f)
25 while (!f.is_ready())
26 { }
29 int main()
31 using namespace __gnu_test;
32 time_counter time;
33 resource_counter resource;
35 const int n = 20;
36 std::promise<void> p;
37 std::shared_future<void> f = p.get_future();
38 std::thread pollers[n];
39 for (int i=0; i < n; ++i)
40 pollers[i] = std::thread(poll, f);
42 start_counters(time, resource);
44 for (int i = 0; i < 1000000; ++i)
45 (void)f.is_ready();
46 p.set_value();
48 for (int i=0; i < n; ++i)
49 pollers[i].join();
51 stop_counters(time, resource);
52 report_performance(__FILE__, "", time, resource);
54 return 0;