pthread_attr_t

Thread attributes record. Opaque.

Declaration

Source position: ptypes.inc line 241

Type
pthread\_attr\_t = record
  \_\_detachstate : cint;
  \_\_schedpolicy : cint;
  \_\_schedparam : sched\_param;
  \_\_inheritsched : cint;
  \_\_scope : cint;
  \_\_guardsize : size\_t;
  \_\_stackaddr\_set : cint;
  \_\_stackaddr : pointer;
  \_\_stacksize : size\_t;
end

Description

pthread_attr_t describes the thread attributes. It should be considered an opaque record, the names of the fields can change anytime. Use the appropriate functions to set the thread attributes.