AshlinHarris / Spinners.jl

Command line spinners in Julia with Unicode support
MIT License
13 stars 1 forks source link

Spinner no longer terminates on Windows #46

Closed AshlinHarris closed 1 year ago

AshlinHarris commented 1 year ago

On Windows, after kill(process), the process status remains permanently as ProcessSignaled(15). On MacOS, it becomes ProcessExited(143). At what commit did the behaviour change?

AshlinHarris commented 1 year ago

On Windows, if the process terminates on its own, it goes to ProcessExited(0). Signaling the process with kill causes it to remain permanently as ProcessSignaled(15).

AshlinHarris commented 1 year ago

getpid fails for a signaled process. Is the spinner process being signaled at all?

AshlinHarris commented 1 year ago

54