aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/spawn.mli
Commit message (Collapse)AuthorAge
* [spawn] don't create a control socket on Unix (Fix #7713)Gravatar Enrico Tassi2018-06-15
|
* Update headers following #6543.Gravatar Théo Zimmermann2018-02-27
|
* Fix FIXME: use OCaml 4.02 generative functors when available.Gravatar Gaëtan Gilbert2017-11-01
| | | | 4.02.3 has been the minimal OCaml version for a while now.
* Bump year in headers.Gravatar Pierre-Marie Pédrot2017-07-04
|
* Update copyright headers.Gravatar Maxime Dénès2016-01-20
|
* Update headers.Gravatar Maxime Dénès2015-01-12
|
* Inlining Spawn.kill_if in the one place were it was actually used, thusGravatar Pierre-Marie Pédrot2014-12-25
| | | | removing the need of thread creation in the interface.
* Spawn: managed processesGravatar Enrico Tassi2014-01-26
The Spawn and Spawned modules factor the operation of spawning a process. Both synchronous and asynchronous channels are supported. Both threaded and glib like main loop models are supported. Still, not all combinations are truly tested not equipped with a decent API: only async + glib and sync + thread are, since these are the models we use for coqide<->coqtop and coqtop<->worker respectively.