Thread.this
this
( void function() fn, size_t sz = 0 ) @safe pure nothrow @nogcInitializes a thread object which is associated with a static D function.
Parameters
fn | The thread function. |
sz | The stack size for this thread. In: fn must not be null. |
this
( void delegate() dg, size_t sz = 0 ) @safe pure nothrow @nogcInitializes a thread object which is associated with a dynamic D function.
Parameters
dg | The thread function. |
sz | The stack size for this thread. In: dg must not be null. |
this
( size_t sz = 0 ) @safe pure nothrow @nogcNo documentation available for this declaration.