Function Reactor.setFiberName

Set a fiber name

void setFiberName (
  FiberHandle fh,
  string name,
  void* ptr
) nothrow @nogc @safe;

void setFiberName(T) (
  FiberHandle fh,
  string name,
  scope T dlg
) nothrow @nogc @safe
if (isDelegate!T);

Used by certain diagnostic functions to distinguish the different fiber types and create histograms. Arguments bear no specific meaning, but default to describing the function used to start the fiber.