windbg command
Wednesday, 25 August 2004
To list all modules loaded by the process -LM
(shows the loaded module address also)
: WinDebug thread commands
To see all threads ~
To freeze all threads ~*F
to unfreeze thread 1 ~1U
to set the thread ~S
If destination is an empty list
lstOfInt.push_back(1);
lstOfInt.push_back(2);
lstOfInt.push_back(3);
copy(lstOfInt.begin(),lstOfInt.end(),lstOfIntDest.begin() ); -->WRONG
copy(lstOfInt.begin(),lstOfInt.end(),back_inserter(lstOfIntDest) ); -->CORRECT
Comments