[Pharo-users] Re: How to show the process name in the debugger?

2022-04-26 Thread Norbert Hartl
Try Processor activeProcess name regards, Norbert > Am 26.04.2022 um 10:45 schrieb Stewart MacLean : > > Hi, > > I am working on a multi green and OS threaded implementation of Apple's > Bonjour service discovery. > > I'd like to show the current Smalltalk process name in the Halt window t

[Pharo-users] Re: How to show the process name in the debugger?

2022-04-26 Thread Steven Costiou
Hi, in Pharo 9-11, from the StDebugger you can access the debugged process using self session interruptedProcess name In the debugger class you can prepend that instruction in the window title update methods: StDebugger>>initializeWindow: aWindowPresenter super initializeWindow: aWindo

[Pharo-users] Re: How to show the process name in the debugger?

2022-04-26 Thread Stewart MacLean
Thanks Steven - exactly what I needed to know! Cheers, Stewart On Tue, Apr 26, 2022 at 10:08 PM Steven Costiou wrote: > Hi, > > in Pharo 9-11, from the StDebugger you can access the debugged process > using > > self session interruptedProcess name > > In the debugger class you can prepend that

[Pharo-users] Re: How to show the process name in the debugger?

2022-04-26 Thread Stewart MacLean
Thanks Norbert - I was meaning how to show it in the title of the Debugger for when I get a lot of debuggers on different processes. Please see Steven Costiou's solution. Cheers, Stewart On Tue, Apr 26, 2022 at 9:57 PM Norbert Hartl wrote: > Try > > Processor activeProcess name > > regards, >