Tools
dbgmulti.txt
Associated article: Debugging Multithreaded Applications
Tags: Tools Design
Published source code accompanying the article by Peter Horwood, Shlomo Wygodny, and Martin Zardecki, in which they describe problems with multithreaded applications and discuss common debugging techniques.
Debugging Multithreaded Applications
by Peter Horwood, Shlomo Wygodny, and Martin Zardecki
Listing One
// Master Thread created earlier in the program
UINT MasterThreadProc(LPVOID pParam)
{
CString cs_Out;
CThreadzDlg &MainDlg = *(CThreadzDlg *)pParam;
for (;;) {
/* Loop continuously checking to see if there ...


