Reputation: 5252
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?
Upvotes: 7
Views: 1859
Reputation: 26830
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.
Upvotes: 7