mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 10:26:05 +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_CANCEL_ASYNCHRONOUS = $02;
|
||||||
PTHREAD_CANCELED = pointer(-(19));
|
PTHREAD_CANCELED = pointer(-(19));
|
||||||
|
|
||||||
|
PTHREAD_ONCE_NOTDONE = 0;
|
||||||
|
PTHREAD_ONCE_DONE = 1;
|
||||||
const
|
|
||||||
PTHREAD_ONCE_NOTDONE = 0;
|
PTHREAD_BARRIER_SERIAL_THREAD = -(2);
|
||||||
PTHREAD_ONCE_DONE = 1;
|
|
||||||
|
|
||||||
PTHREAD_BARRIER_SERIAL_THREAD = -(2);
|
|
||||||
|
|
||||||
type
|
type
|
||||||
_Voidfp = procedure (_para1:pointer);cdecl;
|
_Voidfp = procedure (_para1:pointer);cdecl;
|
||||||
|
@ -24,6 +24,10 @@
|
|||||||
PTHREAD_CREATE_DETACHED = $40;
|
PTHREAD_CREATE_DETACHED = $40;
|
||||||
PTHREAD_SCOPE_PROCESS = 0;
|
PTHREAD_SCOPE_PROCESS = 0;
|
||||||
|
|
||||||
|
_PTHREAD_MUTEX_NORMAL = 0;
|
||||||
|
_PTHREAD_MUTEX_ERRORCHECK = 2;
|
||||||
|
_PTHREAD_MUTEX_RECURSIVE = 4;
|
||||||
|
|
||||||
type
|
type
|
||||||
pthread_t = culong;
|
pthread_t = culong;
|
||||||
|
|
||||||
|
@ -191,13 +191,7 @@ Type
|
|||||||
end;
|
end;
|
||||||
itimerspec32_t = itimerspec32;
|
itimerspec32_t = itimerspec32;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const
|
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 }
|
{ System limits, POSIX value in parentheses, used for buffer and stack allocation }
|
||||||
{ took idefix' values}
|
{ took idefix' values}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user