Re: [Haskell-cafe] How to terminate the process group of a processcreated with createProcess?

2012-01-12 Thread André Scholz
On 11.01.2012 at 23:08 Donn Cave wrote: Quoth Brandon Allbery allber...@gmail.com, ... terminateProcess passes on the semantics of kill(2); on SVID-compliant (and I think POSIX.1-compliant) systems, the negative of the process group leader's process ID is used to signal the process

Re: [Haskell-cafe] How to terminate the process group of a processcreated with createProcess?

2012-01-12 Thread Brandon Allbery
On Thu, Jan 12, 2012 at 06:56, André Scholz andre.sch...@uni-bremen.dewrote: gid - createProcessGroup pid but i get the error message: createProcessGroup: permission denied It's only going to work on BSDish systems; on systems using the SVID/POSIX model, only the current process

Re: [Haskell-cafe] How to terminate the process group of a processcreated with createProcess?

2012-01-11 Thread Donn Cave
Quoth Brandon Allbery allber...@gmail.com, ... terminateProcess passes on the semantics of kill(2); on SVID-compliant (and I think POSIX.1-compliant) systems, the negative of the process group leader's process ID is used to signal the process group. Note that you may need to arrange for your