When I run multiple functions at the same time, they are put in waiting, if they are in waiting can they fail because of the timeout time?
In other words, when the function is waiting, can the timeout time interrupt it or what other process could interrupt the running of the waiting functions?
TL;DR
The user is asking if functions can fail if they are waiting due to a timeout timer. The response is that the timeout timer starts when the function starts executing, but it will not interrupt a function that is in a waiting state.