-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LibCompat: rewrite
OSProcess
to use LibUnix's #spawn:...
...rather than Mariano's `OSSubprocess` package. The problem is that `OSSubProcess` reaping logic assumes that all processes are spawned by it so it may (does) reap processes spawned by LibUnix. This commit makes `OSProcess` compatibility class to use `LibUnix` to avoid this problem and throw an error is OSSubProcess is loaded. A proper fix would be to change `OSSubprocess` to only reap processes it has spawned (see [1]) [1] pharo-contributions/OSSubprocess#76
- Loading branch information
Showing
3 changed files
with
39 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters