Is "multithreaded debugging" missing in VC ++ 2008 Express?
I've seen comments that there are some missing features in the VC ++ 2008 Express debugger, especially those related to multithreaded debugging. I've tried debugging a multithreaded program in Visual C ++ 2008 Express and it seems to work fine. What's really missing?
Searching here (as mentioned in one answer), I found:
"Multi-threaded / multiprocessor debugging is easier with improved versions of Threads and other UI enhancements to make multi-threaded debugging easier."
But it is still unclear what is missing ...
source to share
Visual C ++ 2008 Express lacks the following features:
-
Dumps allow you to save information about a program for later debugging
-
Attach to a remote process lets you attach a debugger to processes on remote computers configured for remote debugging
Additionally, Visual C ++ 2008 Express does not include OpenMP support, 64-bit compilers, or a resource editor.
Link: http://msdn.microsoft.com/en-us/vstudio/products/cc149003.aspx
These resources may also be of interest:
source to share