Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix scheduler interface #82

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion redGrapes/scheduler/pool_scheduler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace redGrapes
*
* @return true if thread was indeed asleep
*/
bool wake(WakerId id = 0);
bool wake(WakerId id);

/* wakeup all workers
*/
Expand Down
8 changes: 4 additions & 4 deletions redGrapes/scheduler/scheduler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ namespace redGrapes
}

//! add task to the set of to-initialize tasks
virtual void emplace_task(TTask& task)
virtual void emplace_task(TTask&)
{
}

//! add task to ready set
virtual void activate_task(TTask& task)
virtual void activate_task(TTask&)
{
}

virtual void wake_all()
{
}

virtual bool wake(WakerId id = 0)
virtual bool wake(WakerId)
{
return false;
}
Expand All @@ -61,7 +61,7 @@ namespace redGrapes
}

// initialize the execution context pointed to by the scheduler
virtual void init()
virtual void init(WorkerId)
{
}

Expand Down
Loading