Skip to content

Commit

Permalink
Change register_* calls from hpx::applier to hpx::threads namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Nov 13, 2019
1 parent bde31e3 commit 435f935
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/util/interval_timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ namespace hpx { namespace util { namespace detail
// lock here would be the right thing but leads to crashes and hangs
// at shutdown.
//util::unlock_guard<std::unique_lock<mutex_type> > ul(l);
id = hpx::applier::register_thread_plain(
id = hpx::threads::register_thread_plain(
util::bind_front(&interval_timer::evaluate,
this->shared_from_this()),
description_.c_str(), threads::suspended, true,
Expand Down
2 changes: 1 addition & 1 deletion src/util/one_size_heap_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace hpx { namespace util
{
if (nullptr == threads::get_self_ptr())
{
hpx::applier::register_work_nullary(
hpx::threads::register_work_nullary(
util::bind_front(&one_size_heap_list::free, this, p, count),
"one_size_heap_list::free");
return true;
Expand Down

0 comments on commit 435f935

Please sign in to comment.