pthread_cond_t
Thread conditional variable (opaque).
Declaration
Source position: ptypes.inc line 290
Type
pthread\_cond\_t = record
\_\_c\_lock : \_pthread\_fastlock;
\_\_c\_waiting : pointer;
\_\_padding : Array[0..48-1-sizeof(\_pthread\_fastlock)-sizeof(pointer)-sizeof(clonglong)] of Byte;
\_\_align : clonglong;
end
Description
pthread_cond_t describes a thread conditional variable. It should be considered an opaque record, the names of the fields can change anytime.