setThreadName

* Set the thread name to the same as the task name * Note. Makes it easier to debug because pthread name is the same as th task name * Cuts of the name if longer than length allowed by the kernel

  1. int setThreadName(string _name)
    version(Posix)
    @trusted nothrow
    int
    setThreadName
    (
    string _name
    )
  2. int setThreadName(string _)

Meta