Windows do not have Unix-style signals such as SIGUSR1.

 

To kill a process you can use Windows PowerShell:

 

$ Stop-Process -Name Pharo

Or by pid:

$ Get-Process -Name Pharo

$ Stop-Process -Id 42

 

Best regards,

Henrik

 

Sent from Mail for Windows 10

 

From: Alistair Grant
Sent: 14 May 2017 23:18
To: pharo-users@lists.pharo.org
Subject: [Pharo-users] Windows equivalent of kill -s SIGUSR1?

 

Hi All,

The subject pretty much says it all: Is there an equivalent on Windows
to the linux

kill -s SIGUSR1 <pid>

that gets the VM to dump its current status?

Thanks,
Alistair