detached 0.1.3

Spawn detached processes with no need to wait on them


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:


This package provides sub packages which can be used individually:

detached:spawn - A minimal D application.

Detached

Spawn detached processes in D.

Build Status Windows Build Status Coverage Status

Standard D library does not provide a way to start detached process and requires to wait on returned Pid. Without waiting you will get zombie processes (resource leakage) if parent process outlives its child.

detached solves this problem by introducing the spawnProcessDetached function which has almost the same API as spawnProcess.

Features

  • Run process detached, i.e. with no need to wait.
  • Actually reports errors from exec- functions unlike spawnProcess which just checks if executable and working directory exist before fork and hopes their states leave unchanged before exec.

Missing features

  • A way to close standard streams in spawned process (e.g. for daemon creation).

Examples

Spawn

Simple program demonstrating the usage of spawnProcessDetached.

dub run :spawn  -- --workdir=/usr/local -- pwd
dub run :spawn  -- --stdout=/dev/null --stderr=/dev/null -- vlc
dub run :spawn -- -v HELLO=WORLD -- sh -c 'echo $HELLO'
Authors:
  • Roman Chistokhodov
Sub packages:
detached:spawn
Dependencies:
findexecutable
Versions:
0.1.7 2017-Sep-02
0.1.6 2017-Jun-26
0.1.5 2017-Jun-18
0.1.4 2017-Mar-19
0.1.3 2017-Mar-17
Show all 9 versions
Download Stats:
  • 1 downloads today

  • 1 downloads this week

  • 1 downloads this month

  • 245 downloads total

Score:
0.8
Short URL:
detached.dub.pm