In the case of a message in the output window in Visual Studio showing
The thread 0xc28 has exited with code 0
How do I know what thread it belongs to? For example, if its one I added or a system thread, etc?
In the case of a message in the output window in Visual Studio showing
The thread 0xc28 has exited with code 0
How do I know what thread it belongs to? For example, if its one I added or a system thread, etc?
You should pause the program in the debugger and open the thread window in Visual Studio. You'll find it in the "Debug" tab in the menu bar in the "Window" sub-menu. In this window, you'll be able to see all active threads their locations and their Process IDs. This will help you find out where that thread came from.