mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-04 04:37:19 +01:00
+ added pthread_mutex_trylock() to fix compilation after r15026
git-svn-id: trunk@15069 -
This commit is contained in:
parent
c47c125ec0
commit
4ce7fc92a0
@ -92,6 +92,7 @@ function pthread_self:pthread_t; cdecl;external 'c';
|
||||
function pthread_mutex_init (p:ppthread_mutex_t;o:ppthread_mutexattr_t):cint; cdecl;external 'c';
|
||||
function pthread_mutex_destroy (p:ppthread_mutexattr_t):cint; cdecl;external 'c';
|
||||
function pthread_mutex_lock (p:ppthread_mutexattr_t):cint; cdecl;external 'c';
|
||||
function pthread_mutex_trylock (p:ppthread_mutex_t):cint; cdecl;external 'c';
|
||||
function pthread_mutex_unlock (p:ppthread_mutexattr_t):cint; cdecl;external 'c';
|
||||
function pthread_cancel(_para1:pthread_t):cint;cdecl;external 'c';
|
||||
function pthread_detach(_para1:pthread_t):cint;cdecl;external 'c';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user