You don't take into account that spawn() can enqueue a bunch of tasks, not only single task. You must use something like:
#ifdef(MY_COUNTER)
counter += number_of_spawned_tasks;
#endif
Hi Dmitry
Thank you for the clarification. I had suspected this after making my post but did want to ensure that this was the problem. Given this issue, is there an easy way for me to figure out how many tasks are being inserted? Is there some sort of parameter or variable in the spawn that yields this information?
Thank you!