In a multi-threaded application, when I create several threads, how can I save the debugger in only one of them if they sleep and wake up? I am using C #.
Addition: my application needs to create some threads for control, each of which, their own (for simplification) hardware device.
Each returns some data from its device and affects another stream.
To check if one thread is working, I have to βfreezeβ on one and check at a certain point if it does not βharmβ the others.
source share