I'm a newbie when it comes to streaming in C # and I'm not sure if each thread should have its own call stack? Basically, if I get "Runtime Check Error # 0" - the ESP value was wrong, "can this only result in a failure of the thread in which it occurred, or the whole program?
Each thread has its own stack, so stack damage affects only one thread. But the default thread exception handler will delete the application.
Each thread has its own call stack, so corruption will affect only one thread.
But, as John pointed out, this may be enough to stop the program.
Source: https://habr.com/ru/post/1302702/More articles:Removing spaces in a Java string? - javaUpload a file to a remote server, how should I? - c #SortDictionary, but sorting by value - sortingEvenly distributed integers within the range - phpAutomatically resize QDockWidget content - c ++Suggestions for a first-class source sourceforge project? - pythonmultipage forms and data SESSIONS vs HIDDEN - variablesOnchange event using selecttouislider - jqueryProcess Monitoring - linuxWhy does the validation in the model referenced by the callback cause my original transaction to fail? - callbackAll Articles