package spawn

  1. Overview
  2. Docs
Spawning sub-processes

Install

Dune Dependency

Authors

Maintainers

Sources

spawn-v0.12.0.tbz
md5=f9c770cbe3856e6ed5b92ba3ce7c691c

Description

Spawn is a small library exposing only one functionality: spawning sub-process.

It has three main goals:

  1. provide missing features of Unix.create_process such as providing a working directory

  2. 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

  3. 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.

Published: 26 Apr 2018

README

SPAWN - spawning system process

Spawn is a small library exposing only one function: Spawn.spawn. Its purpose is to start command in the background. Spawn aims to provide a few missing features of Unix.create_process such as providing a working directory as well as improving error reporting and performance.

Errors such as directory or program not found are properly reported as Unix.Unix_error exceptions, on both Unix and Windows.

On Unix, Spawn uses vfork by default as it is often a lot faster than fork. There is a benchmark comparing Spawn.spawn to Unix.create_process in spawn-lib/bench. If you don't trust vfork, you can set the environment variable SPAWN_USE_FORK to make Spawn use fork instead.

Dependencies (2)

  1. jbuilder >= "1.0+beta19"
  2. ocaml >= "4.02.3"

Dev Dependencies

None

Used by (6)

  1. async_interactive >= "v0.14.0" & < "v0.16.0"
  2. bun = "0.3.2"
  3. core >= "v0.11.1" & < "v0.15.0"
  4. ocaml-lsp-server >= "1.9.0"
  5. shell < "v0.16.0"
  6. shexp >= "v0.11.1" & < "v0.16.0"

Conflicts

None