Skip to content

Commit

Permalink
made notify member functions private
Browse files Browse the repository at this point in the history
  • Loading branch information
muellan committed Sep 4, 2018
1 parent e2ce16f commit 3e2f7d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parallel_task_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,8 @@ class parallel_task_queue
isDone_.wait(lock, [this]{return empty() && (running() < 1);});
}


private:
//-----------------------------------------------------
void notify_task_started() {
isFull_.notify_one();
Expand All @@ -486,8 +488,6 @@ class parallel_task_queue
}


private:

//---------------------------------------------------------------
void try_assign_tasks()
{
Expand Down

0 comments on commit 3e2f7d3

Please sign in to comment.