spawnversion
Spawning sub-processes
Spawn is a small library exposing only one functionality: spawning sub-process.
It has three main goals:
provide missing features of Unix.create_process such as providing a working directory
provide better errors when a system call fails in the sub-process. For instance if a command is not found, you get a proper [Unix.Unix_error] exception
improve performances by using vfork when available. It is often claimed that nowadays fork is as fast as vfork, however in practice fork takes time proportional to the process memory while vfork is constant time. In application using a lot of memory, vfork can be thousands of times faster than fork.
Author | Jane Street Group, LLC |
---|---|
License | Apache-2.0 |
Published | |
Homepage | https://github.com/janestreet/spawn |
Issue Tracker | https://github.com/janestreet/spawn/issues |
Maintainer | Jane Street developers |
Dependencies | |
Source [http] | https://github.com/janestreet/spawn/releases/download/v0.12.0/spawn-v0.12.0.tbz sha256=d6b7047fefab8a30025d250a606d7e215435ecbf372e60791a8ff5abe243fd54 md5=f9c770cbe3856e6ed5b92ba3ce7c691c |
Edit | https://github.com/ocaml/opam-repository/tree/master/packages/spawn/spawn.v0.12.0/opam |
Required by
- async_interactive>=v0.14.0 & <v0.16.0
- bun=0.3.2
- core>=v0.11.1 & <v0.15.0
- ocaml-lsp-server>=1.9.0
- shell<v0.16.0
- shexp>=v0.11.1 & <v0.16.0