mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 01:39:27 +02:00
+ definition of pthread_mutex_trylock(), fixes compilation after r15026
git-svn-id: trunk@15027 -
This commit is contained in:
parent
c477df5046
commit
fa1d72a2cc
@ -55,6 +55,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_mutex_t):cint; cdecl;external 'c';
|
||||
function pthread_mutex_lock (p:ppthread_mutex_t):cint; cdecl;external 'c';
|
||||
function pthread_mutex_trylock (p:ppthread_mutex_t):cint; cdecl;external 'c';
|
||||
function pthread_mutex_unlock (p:ppthread_mutex_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