Language

Package: ocaml4.07-spawn @ 0.13.0

Synopsis

Spawning sub-processes

Description

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.

Home page
https://github.com/janestreet/spawn
Location
gnu/packages/ocaml.scm (line: 6447, column: 2)
License

Lint warnings

LinterMessageLocation
input-labels

Identify input labels that do not match package names

label 'ocaml-ppx-expect' does not match package name 'ocaml4.07-ppx-expect'