* pthread_t/TThreadID is a pointer on all BSDs/Darwin

git-svn-id: trunk@5285 -
This commit is contained in:
Jonas Maebe 2006-11-08 12:24:39 +00:00
parent d2b1da0aea
commit 60ba78459c

View File

@ -19,11 +19,7 @@
type
{ fd are int in C also for 64bit targets (x86_64) }
THandle = Longint;
{$ifdef darwin}
TThreadID = pointer;
{$else}
TThreadID = longint;
{$endif}
{ pthread_mutex_t }
PRTLCriticalSection = ^TRTLCriticalSection;