Thread mutex type (opaque).
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; |
_pthread_mutex_t describes a thread mutex. It should be considered an opaque record, the names of the fields can change anytime.