summaryrefslogtreecommitdiff
path: root/scsh-process.meta
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-04Add 1.5.0 to release-info1.5.1Peter Bex
2018-08-16Port scsh-process to CHICKEN 5Peter Bex
Thanks to Vasilij Schneidermann for providing an initial patch.
2012-10-04Updated meta-file for release 0.10.1Peter Bex
2012-10-01Update files clause in meta-filePeter Bex
2012-10-01Provide a more complete set of primitives, and convert fit-pipes to ↵Peter Bex
fork/pipe+ chain
2012-09-30First stab at basic scsh interface. Currently can fork off subprocesses and ↵Peter Bex
run processess synchronously