Skip to content

Commit

Permalink
Fixing inspect problems
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Aug 6, 2017
1 parent 6fb92e6 commit fe41eeb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions hpx/runtime/resource_partitioner.hpp
Expand Up @@ -32,6 +32,7 @@
#include <memory>
#include <stdexcept>
#include <string>
#include <utility>
#include <vector>

#if !defined(HPX_EXPORTS)
Expand Down
3 changes: 3 additions & 0 deletions hpx/runtime/threads/detail/scheduled_thread_pool.hpp
Expand Up @@ -19,9 +19,12 @@
#include <exception>
#include <iosfwd>
#include <memory>
#include <string>
#include <utility>
#include <vector>

#include <boost/atomic.hpp>

#include <hpx/config/warnings_prefix.hpp>

namespace hpx { namespace threads { namespace detail
Expand Down
1 change: 1 addition & 0 deletions hpx/runtime/threads/detail/scheduled_thread_pool_impl.hpp
Expand Up @@ -32,6 +32,7 @@
#include <functional>
#include <iosfwd>
#include <memory>
#include <string>
#include <utility>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions hpx/runtime/threads/policies/scheduler_base.hpp
Expand Up @@ -30,6 +30,7 @@
#include <exception>
#include <memory>
#include <mutex>
#include <set>
#include <utility>
#include <vector>

Expand Down
6 changes: 3 additions & 3 deletions hpx/util/io_service_pool.hpp
@@ -1,4 +1,4 @@
// Copyright (c) 2007-2015 Hartmut Kaiser
// Copyright (c) 2007-2017 Hartmut Kaiser
//
// Parts of this code were taken from the Boost.Asio library
// Copyright (c) 2003-2007 Christopher M. Kohlhoff (chris at kohlhoff dot com)
Expand Down Expand Up @@ -72,7 +72,7 @@ namespace hpx { namespace util

/// Run all io_service objects in the pool. If join_threads is true
/// this will also wait for all threads to complete
bool run(std::size_t num_threads, bool join_threads = true,
bool run(std::size_t num_threads, bool join_threads = true,
compat::barrier* startup = nullptr);

/// \brief Stop all io_service objects in the pool.
Expand Down Expand Up @@ -112,7 +112,7 @@ namespace hpx { namespace util
}

protected:
bool run_locked(std::size_t num_threads, bool join_threads,
bool run_locked(std::size_t num_threads, bool join_threads,
compat::barrier* startup);
void stop_locked();
void join_locked();
Expand Down

0 comments on commit fe41eeb

Please sign in to comment.