Replace "AAL" type with "Aal" to parallel "Pal"

This commit is contained in:
Nathaniel Filardo
2019-12-04 16:36:55 +00:00
parent 4d6759aca4
commit ef40f1cf1d
6 changed files with 9 additions and 9 deletions

View File

@@ -31,18 +31,18 @@ private:
auto prev = ready.fetch_add(1);
if (prev + 1 == cores)
{
start = AAL::tick();
start = Aal::tick();
flag = true;
}
while (!flag)
AAL::pause();
Aal::pause();
f(id);
prev = complete.fetch_add(1);
if (prev + 1 == cores)
{
end = AAL::tick();
end = Aal::tick();
}
}