Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Thread debbuging

Status
Not open for further replies.

Lonko

Programmer
Apr 25, 2003
2
SI
Hi anyone knows how cn i debug threads in VC++ 6.0, couze one of my threads is taking to much proccessor time and i would like to debug what that thread does????

Anyone!
 
When you're debugging you can specify which thread to follow.

Menu -> Debug -> Threads... -> Select thread in dialog
 
You could also profile the application / thread.

/JOlesen
 
Hi where in visual c++ 6.0 can i set that debugging threads????? that MEnu->.... does not help
 
>> and i would like to debug what that thread does????

Set a breakpoint in the entry-point function of the thread (or other suitable place.)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top