Skip to content
Snippets Groups Projects
Commit 69cf8b96 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'fix_reap_completion_and_schedule' into 'master'

[IO] propagate callerEnvironment to reapCompletion

See merge request i4/manycore/emper!132
parents 874784cc 9beb4432
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ class IoContext : public Logger<LogSubsystem::IO> {
*/
template <CallerEnvironment callerEnvironment = CallerEnvironment::EMPER>
void reapAndScheduleCompletions() {
auto completions = reapCompletions();
auto completions = reapCompletions<callerEnvironment>();
if (!completions.empty()) {
if constexpr (callerEnvironment == CallerEnvironment::EMPER) {
runtime.schedule(completions.begin(), completions.end());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment