* commented cond_t, already exported via unixtype, bug #7454

Still a NPTL decision has to be taken (6280)

git-svn-id: trunk@4931 -
This commit is contained in:
marco 2006-10-15 16:28:32 +00:00
parent 9e825bdc76
commit d72a49fad0

View File

@ -138,10 +138,12 @@ type
end; end;
TPthreadCleanupBuffer = _pthread_cleanup_buffer; TPthreadCleanupBuffer = _pthread_cleanup_buffer;
{ Alread in ptypes, bug 7454
pthread_cond_t = record pthread_cond_t = record
__c_lock: _pthread_fastlock; __c_lock: _pthread_fastlock;
__c_waiting: _pthread_descr; __c_waiting: _pthread_descr;
end; end;
}
PPthread_cond_t = ^pthread_cond_t; PPthread_cond_t = ^pthread_cond_t;
TCondVar = pthread_cond_t; TCondVar = pthread_cond_t;
PCondVar = ^TCondVar; PCondVar = ^TCondVar;