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

copying to stl list
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

Popular posts from this blog

Long running Java process resource consumption monitoring , leak detection and GC tuning

Best practises - Selenium WebDriver/ Java

CORBA - C++ Client (ACE TAO) Java Server (JacORB) A simple example