You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You keep calling functions one after the other, things keep getting pushed into the stack, but no function returns. Without the 1s delays, this code would cause a stack overflow pretty quickly.
You should just set the ready flag back to 1 in the second function and let the infinite loop in main do the calling of the scheduler.
The text was updated successfully, but these errors were encountered:
You keep calling functions one after the other, things keep getting pushed into the stack, but no function returns. Without the 1s delays, this code would cause a stack overflow pretty quickly.
You should just set the ready flag back to 1 in the second function and let the infinite loop in main do the calling of the scheduler.
The text was updated successfully, but these errors were encountered: