dispatchrun / dispatch

Entrypoint of the Dispatch ecosystem.
11 stars 1 forks source link

Review use of Pdeathsig #68

Closed chriso closed 4 months ago

chriso commented 4 months ago

We may be using Pdeathsig incorrectly on Linux. The death signal is sent when the parent thread dies, not the process, which means it may be necessary to lock the goroutine to an OS thread while the child process is running.

See https://github.com/golang/go/issues/27505