PTHREAD_MUTEX_T
Thread mutex type (opaque).
Declaration
Source position: pmutext.inc line 35
Type
PTHREAD\_MUTEX\_T = record
case Byte of
1: (
  \_\_m\_reserved : LongInt;
  \_\_m\_count : LongInt;
  \_\_m\_owner : pointer;
  \_\_m\_kind : LongInt;
  \_\_m\_lock : record
    \_\_status : sizeint;
    \_\_spinlock : LongInt;
  end;
);
end
Description
_pthread_mutex_t describes a thread mutex. It should be considered an opaque record, the names of the fields can change anytime.