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

[tests] Include fiberNum in SimpleActorTest WDBG() log

parent 196e2b5e
No related branches found
No related tags found
No related merge requests found
...@@ -48,10 +48,11 @@ static void mainFiber(void* runtime_ptr) { ...@@ -48,10 +48,11 @@ static void mainFiber(void* runtime_ptr) {
sumActor.start(); sumActor.start();
CPS cps; CPS cps;
for (unsigned int i = 0; i < FIBER_COUNT; ++i) { for (unsigned int fiberNum = 0; fiberNum < FIBER_COUNT; ++fiberNum) {
spawn( spawn(
[&sumActor] { [&sumActor, fiberNum] {
WDBG(Dispatcher::getCurrentFiber() << " starts to count to " << FIBERS_COUNT_TO); WDBG(Dispatcher::getCurrentFiber()
<< " (" << fiberNum << ") starts to count to " << FIBERS_COUNT_TO);
for (uint64_t i = 1; i <= FIBERS_COUNT_TO; ++i) { for (uint64_t i = 1; i <= FIBERS_COUNT_TO; ++i) {
sumActor.tell(i); sumActor.tell(i);
} }
......
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