phobos/std/internal/processinit.d
Martin Nowak 17e5cc91a7 fix Issue 11112 - Unable to execute shell commands in different threads
- the environPtr initializer was only called for the main thread
2013-11-17 02:29:00 +01:00

22 lines
573 B
D

// Written in the D programming language.
/++
The only purpose of this module is to do the static construction for
std.process in order to eliminate cyclic construction errors.
Copyright: Copyright 2011 -
License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Jonathan M Davis and Kato Shoichi
Source: $(PHOBOSSRC std/_datetime.d)
+/
module std.internal.processinit;
version(OSX)
{
extern(C) void std_process_shared_static_this();
shared static this()
{
std_process_shared_static_this();
}
}