mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 04:29:29 +02:00
* some cleanup
git-svn-id: trunk@2993 -
This commit is contained in:
parent
1e0efc9b0a
commit
c97598514a
@ -175,13 +175,10 @@ const
|
||||
PTHREAD_CANCEL_ASYNCHRONOUS = $02;
|
||||
PTHREAD_CANCELED = pointer(-(19));
|
||||
|
||||
|
||||
|
||||
const
|
||||
PTHREAD_ONCE_NOTDONE = 0;
|
||||
PTHREAD_ONCE_DONE = 1;
|
||||
|
||||
PTHREAD_BARRIER_SERIAL_THREAD = -(2);
|
||||
PTHREAD_ONCE_NOTDONE = 0;
|
||||
PTHREAD_ONCE_DONE = 1;
|
||||
|
||||
PTHREAD_BARRIER_SERIAL_THREAD = -(2);
|
||||
|
||||
type
|
||||
_Voidfp = procedure (_para1:pointer);cdecl;
|
||||
|
@ -24,6 +24,10 @@
|
||||
PTHREAD_CREATE_DETACHED = $40;
|
||||
PTHREAD_SCOPE_PROCESS = 0;
|
||||
|
||||
_PTHREAD_MUTEX_NORMAL = 0;
|
||||
_PTHREAD_MUTEX_ERRORCHECK = 2;
|
||||
_PTHREAD_MUTEX_RECURSIVE = 4;
|
||||
|
||||
type
|
||||
pthread_t = culong;
|
||||
|
||||
|
@ -191,13 +191,7 @@ Type
|
||||
end;
|
||||
itimerspec32_t = itimerspec32;
|
||||
|
||||
|
||||
|
||||
const
|
||||
_PTHREAD_MUTEX_NORMAL = 0;
|
||||
_PTHREAD_MUTEX_ERRORCHECK = 2;
|
||||
_PTHREAD_MUTEX_RECURSIVE = 4;
|
||||
|
||||
{ System limits, POSIX value in parentheses, used for buffer and stack allocation }
|
||||
{ took idefix' values}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user