summaryrefslogtreecommitdiff
path: root/scsh-process.egg
AgeCommit message (Collapse)Author
2025-02-07Port to CHICKEN 6HEAD1.7.0masterPeter Bex
This allows us to reduce the code considerably because CHICKEN 6 now has native process objects, so we don't need to keep our own version of process tracking. Note that we still need to keep our own list of child processes created by "fork", because we want the automatic subprocess reaper to be able to work in a thread. This means we still need to have a central mapping of our own subprocesses to condition object so we can signal the thread which is waiting. After all I'm not so sure if this was such a great idea, but it's kind of a neat feature that could be useful, so keep it for now.
2018-10-04Use llrb-tree for pending processes to conserve some ressources and use only ↵Jörg Wittenberger
one thread to forrward SIGHCLD to. Signed-off-by: Peter Bex <peter@more-magic.net>
2018-08-16Port scsh-process to CHICKEN 5Peter Bex
Thanks to Vasilij Schneidermann for providing an initial patch.