Skip to content

Commit 435f935

Browse files
committed
Change register_* calls from hpx::applier to hpx::threads namespace
1 parent bde31e3 commit 435f935

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/util/interval_timer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ namespace hpx { namespace util { namespace detail
250250
// lock here would be the right thing but leads to crashes and hangs
251251
// at shutdown.
252252
//util::unlock_guard<std::unique_lock<mutex_type> > ul(l);
253-
id = hpx::applier::register_thread_plain(
253+
id = hpx::threads::register_thread_plain(
254254
util::bind_front(&interval_timer::evaluate,
255255
this->shared_from_this()),
256256
description_.c_str(), threads::suspended, true,

src/util/one_size_heap_list.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ namespace hpx { namespace util
157157
{
158158
if (nullptr == threads::get_self_ptr())
159159
{
160-
hpx::applier::register_work_nullary(
160+
hpx::threads::register_work_nullary(
161161
util::bind_front(&one_size_heap_list::free, this, p, count),
162162
"one_size_heap_list::free");
163163
return true;

0 commit comments

Comments
 (0)