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
alc.c defines a function simulator(). It is used as a signal handler within alc.c. Simulator() itself can issue signals with itself as a handler. This is recursion. Does this make sense?
In order to define a signal handler, it must have this form:
void sighandlerName(int signum);
simulator() was modified to fit this definition. The recursion remains.
The text was updated successfully, but these errors were encountered:
alc.c defines a function simulator(). It is used as a signal handler within alc.c. Simulator() itself can issue signals with itself as a handler. This is recursion. Does this make sense?
In order to define a signal handler, it must have this form:
void sighandlerName(int signum);
simulator() was modified to fit this definition. The recursion remains.
The text was updated successfully, but these errors were encountered: