Skip to content

Commit

Permalink
Don't join and free xstream
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Dec 30, 2023
1 parent f0b6f2a commit 317c8b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hrun/src/work_orchestrator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ void WorkOrchestrator::Join() {
kill_requested_.store(true);
for (std::unique_ptr<Worker> &worker : workers_) {
worker->thread_->join();
ABT_xstream_join(xstream_);
ABT_xstream_free(&xstream_);
// ABT_xstream_join(xstream_);
// ABT_xstream_free(&xstream_);
}
}

Expand Down

0 comments on commit 317c8b2

Please sign in to comment.