detached

Spawn detached process.

Members

Functions

spawnProcessDetached
void spawnProcessDetached(char[][] args, string[string] env, Config config, char[] workingDirectory, ulong* pid)

Spawns a new process, optionally assigning it an arbitrary set of standard input, output, and error streams.

spawnProcessDetached
void spawnProcessDetached(char[][] args, File stdin, File stdout, File stderr, string[string] env, Config config, char[] workingDirectory, ulong* pid)

Spawns a new process, optionally assigning it an arbitrary set of standard input, output, and error streams.

Imports

Config (from std.process)
public import std.process : ProcessException, Config;
Undocumented in source.
File (from std.stdio)
public import std.stdio : File, StdioException;
Undocumented in source.
ProcessException (from std.process)
public import std.process : ProcessException, Config;
Undocumented in source.
StdioException (from std.stdio)
public import std.stdio : File, StdioException;
Undocumented in source.

Meta

Authors

Roman Chistokhodov

Some parts are merely copied from std.process