mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 02:41:50 +02:00
* 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:
parent
9e825bdc76
commit
d72a49fad0
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user