diff options
author | Peter Bex <peter@more-magic.net> | 2025-02-07 10:50:29 +0100 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2025-02-07 10:50:29 +0100 |
commit | 5d2659453493d7a1de7b80257763c72236c4008f (patch) | |
tree | 5e655749831d6ef9073002cddc2a94f6fc25bf42 /scsh-process.meta | |
parent | e520d20700e513d69c5c83a03b48d89f4194fe63 (diff) | |
download | scsh-process-5d2659453493d7a1de7b80257763c72236c4008f.tar.gz |
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.
Diffstat (limited to 'scsh-process.meta')
-rw-r--r-- | scsh-process.meta | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scsh-process.meta b/scsh-process.meta deleted file mode 100644 index 1dbb1be..0000000 --- a/scsh-process.meta +++ /dev/null @@ -1,8 +0,0 @@ -;;; scsh-process.meta -*- Scheme -*- - -((synopsis "A reimplementation for CHICKEN of SCSH's process notation.") - (author "Peter Bex") - (category os) - (license "BSD") - (depends llrb-tree) - (test-depends test)) |