mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 07:00:37 +03:00

This includes deprecating std.c.*, which apparently was marked as scheduled for deprecation in 2.068 but never actually deprecated (though it looks like it was previously removed from the documentation build, since it doesn't show up on dlang.org).
19 lines
545 B
D
19 lines
545 B
D
// @@@DEPRECATED_2017-06@@@
|
|
|
|
/* Written by Walter Bright, Christopher E. Miller, and many others.
|
|
* www.digitalmars.com
|
|
* Placed into public domain.
|
|
*/
|
|
|
|
/++
|
|
$(RED Deprecated. Use $(core.sys.posix.pthread) or the appropriate
|
|
$(D core.sys.posix.*) modules instead. This module will be removed in
|
|
June 2017.)
|
|
+/
|
|
deprecated("Import core.sys.posix.pthread or the appropriate core.sys.posix.* modules instead")
|
|
module std.c.linux.pthread;
|
|
|
|
version (linux):
|
|
import std.c.linux.linux;
|
|
|
|
public import core.sys.posix.pthread;
|