123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 2002 by Peter Vreman,
- member of the Free Pascal development team.
- Linux (pthreads) threading support implementation
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- unit systhrds;
- interface
- {$S-}
- {$ifndef BSD}
- {$linklib c}
- {$linklib pthread}
- {$else}
- // Link reentrant libc with pthreads
- {$linklib c_r}
- {$endif}
- type
- PRTLCriticalSection = ^TRTLCriticalSection;
- TRTLCriticalSection = record
- m_spinlock : longint;
- m_count : longint;
- m_owner : pointer {pthread_t};
- m_kind : longint;
- m_waiting : record
- head,tail : pointer;
- end; {_pthread_queue}
- end;
- { Include generic thread interface }
- {$i threadh.inc}
- implementation
- Uses BaseUnix,unix;
- {*****************************************************************************
- Generic overloaded
- *****************************************************************************}
- {$i ostypes.inc}
- {$i ossysch.inc}
- { Include generic overloaded routines }
- {$i thread.inc}
- {$ifndef BSD}
- {$i pthread.inc}
- {$else}
- {$i ptypes.inc}
- CONST PTHREAD_EXPLICIT_SCHED = 0;
- PTHREAD_CREATE_DETACHED = 1;
- PTHREAD_SCOPE_PROCESS = 0;
- TYPE
- pthread_t = pointer;
- ppthread_t = ^pthread_t;
- pthread_key_t = cint;
- ppthread_key_t = ^pthread_key_t;
- pthread_mutex_t = pointer;
- ppthread_mutex_t= ^pthread_mutex_t;
- pthread_attr_t = pointer; // opague
- ppthread_attr_t = ^pthread_attr_t; // opague
- __destr_func_t = procedure (p :pointer);cdecl;
- __startroutine_t= function (p :pointer):pointer;cdecl;
- pthread_mutex_attr_t = pointer;
- ppthread_mutex_attr_t = ^pthread_mutex_t;
- function pthread_getspecific (t : pthread_key_t):pointer; cdecl; external;
- function pthread_setspecific (t : pthread_key_t;p:pointer):cint; cdecl; external;
- function pthread_key_create (p : ppthread_key_t;f: __destr_func_t):cint; cdecl;external;
- function pthread_attr_init (p : ppthread_key_t):cint; cdecl; external;
- function pthread_attr_setinheritsched(p : ppthread_attr_t;i:cint):cint; cdecl; external;
- function pthread_attr_setscope (p : ppthread_attr_t;i:cint):cint;cdecl;external;
- function pthread_attr_setdetachstate (p : ppthread_attr_t;i:cint):cint;cdecl;external;
- function pthread_create ( p: ppthread_t;attr : ppthread_attr_t;f:__startroutine_t;arg:pointer):cint;cdecl;external;
- procedure pthread_exit ( p: pointer); cdecl;external;
- function pthread_self:cint; cdecl;external;
- function pthread_mutex_init (p:ppthread_mutex_t;o:ppthread_mutex_attr_t):cint; cdecl;external;
- function pthread_mutex_destroy (p:ppthread_mutex_attr_t):cint; cdecl;external;
- function pthread_mutex_lock (p:ppthread_mutex_attr_t):cint; cdecl;external;
- function pthread_mutex_unlock (p:ppthread_mutex_attr_t):cint; cdecl;external;
- {$endif}
- {*****************************************************************************
- System dependent memory allocation
- *****************************************************************************}
- {$ifndef BSD}
- Const
- { Constants for MMAP }
- MAP_PRIVATE =2;
- MAP_ANONYMOUS =$20;
- {$else}
- {$ifdef FreeBSD}
- CONST
- { Constants for MMAP. These are still private for *BSD }
- MAP_PRIVATE =2;
- MAP_ANONYMOUS =$1000;
- {$ELSE}
- {$ENTER ME}
- {$ENDIF}
- {$ENDIF}
- {*****************************************************************************
- Threadvar support
- *****************************************************************************}
- {$ifdef HASTHREADVAR}
- const
- threadvarblocksize : dword = 0;
- var
- TLSKey : pthread_key_t;
- procedure SysInitThreadvar(var offset : dword;size : dword);
- begin
- offset:=threadvarblocksize;
- inc(threadvarblocksize,size);
- end;
- function SysRelocateThreadvar(offset : dword) : pointer;
- begin
- SysRelocateThreadvar:=pthread_getspecific(tlskey)+Offset;
- end;
- procedure SysAllocateThreadVars;
- var
- dataindex : pointer;
- begin
- { we've to allocate the memory from system }
- { because the FPC heap management uses }
- { exceptions which use threadvars but }
- { these aren't allocated yet ... }
- { allocate room on the heap for the thread vars }
- DataIndex:=Pointer(Fpmmap(0,threadvarblocksize,3,MAP_PRIVATE+MAP_ANONYMOUS,-1,0));
- FillChar(DataIndex^,threadvarblocksize,0);
- pthread_setspecific(tlskey,dataindex);
- end;
- procedure SysReleaseThreadVars;
- begin
- {$ifdef ver1_0}
- Fpmunmap(longint(pthread_getspecific(tlskey)),threadvarblocksize);
- {$else}
- Fpmunmap(pointer(pthread_getspecific(tlskey)),threadvarblocksize);
- {$endif}
- end;
- { Include OS independent Threadvar initialization }
- {$i threadvr.inc}
- {$endif HASTHREADVAR}
- {*****************************************************************************
- Thread starting
- *****************************************************************************}
- type
- pthreadinfo = ^tthreadinfo;
- tthreadinfo = record
- f : tthreadfunc;
- p : pointer;
- stklen : cardinal;
- end;
- procedure DoneThread;
- begin
- { Release Threadvars }
- {$ifdef HASTHREADVAR}
- SysReleaseThreadVars;
- {$endif HASTHREADVAR}
- end;
- function ThreadMain(param : pointer) : pointer;cdecl;
- var
- ti : tthreadinfo;
- begin
- {$ifdef HASTHREADVAR}
- { Allocate local thread vars, this must be the first thing,
- because the exception management and io depends on threadvars }
- SysAllocateThreadVars;
- {$endif HASTHREADVAR}
- { Copy parameter to local data }
- {$ifdef DEBUG_MT}
- writeln('New thread started, initialising ...');
- {$endif DEBUG_MT}
- ti:=pthreadinfo(param)^;
- dispose(pthreadinfo(param));
- { Initialize thread }
- InitThread(ti.stklen);
- { Start thread function }
- {$ifdef DEBUG_MT}
- writeln('Jumping to thread function');
- {$endif DEBUG_MT}
- ThreadMain:=pointer(ti.f(ti.p));
- end;
- function BeginThread(sa : Pointer;stacksize : dword;
- ThreadFunction : tthreadfunc;p : pointer;
- creationFlags : dword; var ThreadId : DWord) : DWord;
- var
- ti : pthreadinfo;
- thread_attr : pthread_attr_t;
- begin
- {$ifdef DEBUG_MT}
- writeln('Creating new thread');
- {$endif DEBUG_MT}
- { Initialize multithreading if not done }
- if not IsMultiThread then
- begin
- {$ifdef HASTHREADVAR}
- { We're still running in single thread mode, setup the TLS }
- pthread_key_create(@TLSKey,nil);
- InitThreadVars(@SysRelocateThreadvar);
- {$endif HASTHREADVAR}
- IsMultiThread:=true;
- end;
- { the only way to pass data to the newly created thread
- in a MT safe way, is to use the heap }
- new(ti);
- ti^.f:=ThreadFunction;
- ti^.p:=p;
- ti^.stklen:=stacksize;
- { call pthread_create }
- {$ifdef DEBUG_MT}
- writeln('Starting new thread');
- {$endif DEBUG_MT}
- pthread_attr_init(@thread_attr);
- pthread_attr_setinheritsched(@thread_attr, PTHREAD_EXPLICIT_SCHED);
- pthread_attr_setscope(@thread_attr, PTHREAD_SCOPE_PROCESS);
- pthread_attr_setdetachstate(@thread_attr, PTHREAD_CREATE_DETACHED);
- pthread_create(@threadid, @thread_attr, @ThreadMain,ti);
- BeginThread:=threadid;
- end;
- procedure EndThread(ExitCode : DWord);
- begin
- DoneThread;
- pthread_exit(pointer(ExitCode));
- end;
- function SuspendThread (threadHandle : dword) : dword;
- begin
- {$Warning SuspendThread needs to be implemented}
- end;
- function ResumeThread (threadHandle : dword) : dword;
- begin
- {$Warning ResumeThread needs to be implemented}
- end;
- procedure ThreadSwitch; {give time to other threads}
- begin
- {extern int pthread_yield (void) __THROW;}
- {$Warning ThreadSwitch needs to be implemented}
- end;
- function KillThread (threadHandle : dword) : dword;
- begin
- {$Warning KillThread needs to be implemented}
- end;
- function WaitForThreadTerminate (threadHandle : dword; TimeoutMs : longint) : dword; {0=no timeout}
- begin
- {$Warning WaitForThreadTerminate needs to be implemented}
- end;
- function ThreadSetPriority (threadHandle : dword; Prio: longint): boolean; {-15..+15, 0=normal}
- begin
- {$Warning ThreadSetPriority needs to be implemented}
- end;
- function ThreadGetPriority (threadHandle : dword): Integer;
- begin
- {$Warning ThreadGetPriority needs to be implemented}
- end;
- function GetCurrentThreadId : dword;
- begin
- GetCurrentThreadId:=dword(pthread_self);
- end;
- {*****************************************************************************
- Delphi/Win32 compatibility
- *****************************************************************************}
- procedure InitCriticalSection(var CS:TRTLCriticalSection);
- begin
- cs.m_spinlock:=0;
- cs.m_count:=0;
- cs.m_owner:=0;
- cs.m_kind:=1;
- cs.m_waiting.head:=0;
- cs.m_waiting.tail:=0;
- pthread_mutex_init(@CS,NIL);
- end;
- procedure EnterCriticalSection(var CS:TRTLCriticalSection);
- begin
- pthread_mutex_lock(@CS);
- end;
- procedure LeaveCriticalSection(var CS:TRTLCriticalSection);
- begin
- pthread_mutex_unlock(@CS);
- end;
- procedure DoneCriticalSection(var CS:TRTLCriticalSection);
- begin
- pthread_mutex_destroy(@CS);
- end;
- {*****************************************************************************
- Heap Mutex Protection
- *****************************************************************************}
- var
- HeapMutex : pthread_mutex_t;
- procedure PThreadHeapMutexInit;
- begin
- pthread_mutex_init(@heapmutex,nil);
- end;
- procedure PThreadHeapMutexDone;
- begin
- pthread_mutex_destroy(@heapmutex);
- end;
- procedure PThreadHeapMutexLock;
- begin
- pthread_mutex_lock(@heapmutex);
- end;
- procedure PThreadHeapMutexUnlock;
- begin
- pthread_mutex_unlock(@heapmutex);
- end;
- const
- PThreadMemoryMutexManager : TMemoryMutexManager = (
- MutexInit : @PThreadHeapMutexInit;
- MutexDone : @PThreadHeapMutexDone;
- MutexLock : @PThreadHeapMutexLock;
- MutexUnlock : @PThreadHeapMutexUnlock;
- );
- procedure InitHeapMutexes;
- begin
- SetMemoryMutexManager(PThreadMemoryMutexManager);
- end;
- initialization
- InitHeapMutexes;
- end.
- {
- $Log$
- Revision 1.15 2003-10-01 21:00:09 peter
- * GetCurrentThreadHandle renamed to GetCurrentThreadId
- Revision 1.14 2003/10/01 20:53:08 peter
- * GetCurrentThreadId implemented
- Revision 1.13 2003/09/20 12:38:29 marco
- * FCL now compiles for FreeBSD with new 1.1. Now Linux.
- Revision 1.12 2003/09/16 13:17:03 marco
- * Wat cleanup, ouwe syscalls nu via baseunix e.d.
- Revision 1.11 2003/09/16 13:00:02 marco
- * small BSD gotcha removed (typing mmap params)
- Revision 1.10 2003/09/15 20:08:49 marco
- * small fixes. FreeBSD now cycles
- Revision 1.9 2003/09/14 20:15:01 marco
- * Unix reform stage two. Remove all calls from Unix that exist in Baseunix.
- Revision 1.8 2003/03/27 17:14:27 armin
- * more platform independent thread routines, needs to be implemented for unix
- Revision 1.7 2003/01/05 19:11:32 marco
- * small changes originating from introduction of Baseunix to FreeBSD
- Revision 1.6 2002/11/11 21:41:06 marco
- * syscall.inc -> syscallo.inc
- Revision 1.5 2002/10/31 13:45:21 carl
- * threadvar.inc -> threadvr.inc
- Revision 1.4 2002/10/26 18:27:52 marco
- * First series POSIX calls commits. Including getcwd.
- Revision 1.3 2002/10/18 18:05:06 marco
- * $I pthread.inc instead of pthreads.inc
- Revision 1.2 2002/10/18 12:19:59 marco
- * Fixes to get the generic *BSD RTL compiling again + fixes for thread
- support. Still problems left in fexpand. (inoutres?) Therefore fixed
- sysposix not yet commited
- Revision 1.1 2002/10/16 06:22:56 michael
- Threads renamed from threads to systhrds
- Revision 1.1 2002/10/14 19:39:17 peter
- * threads unit added for thread support
- }
|