Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display Thread name when debugging - delphi

I've found some good questions and with good answers for naming threads in Delphi. Like this one Named threads in Delphi - what is that for?.

But how, while debugging, I get to see the name of the thread? And also, even with that, I cannot see the thread name in utilities like Process Explorer right?

like image 992
ronaldosantana Avatar asked May 05 '11 21:05

ronaldosantana


1 Answers

When the execution is paused (because you trigger the pause by clicking the "pause" icon or selecting menu Run, Program Pause; or because the breakpoint is hit), the thread names are visible in the Threads window (View, Debug Windows, Threads; or Ctrl-Alt-T).

No, Process Explorer cannot show thread names.

like image 109
gabr Avatar answered Sep 28 '22 08:09

gabr