123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- {
- 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.
- **********************************************************************}
- {*****************************************************************************
- Local WINApi imports
- *****************************************************************************}
- const
- { LocalAlloc flags }
- LMEM_FIXED = 0;
- LMEM_ZEROINIT = 64;
- {$ifndef WINCE}
- function TlsAlloc : DWord;
- stdcall;external KernelDLL name 'TlsAlloc';
- function TlsFree(dwTlsIndex : DWord) : LongBool;
- stdcall;external KernelDLL name 'TlsFree';
- {$endif WINCE}
- function TlsGetValue(dwTlsIndex : DWord) : pointer;
- stdcall;external KernelDLL name 'TlsGetValue';
- function TlsSetValue(dwTlsIndex : DWord;lpTlsValue : pointer) : LongBool;
- stdcall;external KernelDLL name 'TlsSetValue';
- function CreateThread(lpThreadAttributes : pointer;
- dwStackSize : SIZE_T; lpStartAddress : pointer;lpParameter : pointer;
- dwCreationFlags : DWord;var lpThreadId : DWord) : THandle;
- stdcall;external KernelDLL name 'CreateThread';
- procedure ExitThread(dwExitCode : DWord);
- stdcall;external KernelDLL name 'ExitThread';
- function LocalAlloc(uFlags:DWord; dwBytes:DWORD):Pointer;
- stdcall;external KernelDLL name 'LocalAlloc';
- function LocalFree(hMem : Pointer):Pointer; stdcall;external KernelDLL name 'LocalFree';
- procedure Sleep(dwMilliseconds: DWord); stdcall;external KernelDLL name 'Sleep';
- function WinSuspendThread (threadHandle : THandle) : dword; stdcall;external KernelDLL name 'SuspendThread';
- function WinResumeThread (threadHandle : THandle) : dword; stdcall;external KernelDLL name 'ResumeThread';
- function TerminateThread (threadHandle : THandle; var exitCode : dword) : boolean; stdcall;external KernelDLL name 'TerminateThread';
- function WaitForSingleObject (hHandle : THandle;Milliseconds: dword): dword; stdcall;external KernelDLL name 'WaitForSingleObject';
- function WinThreadSetPriority (threadHandle : THandle; Prio: longint): boolean; stdcall;external KernelDLL name 'SetThreadPriority';
- function WinThreadGetPriority (threadHandle : THandle): LongInt; stdcall;external KernelDLL name 'GetThreadPriority';
- {$ifndef WINCE}
- function CreateEvent(lpEventAttributes:pointer;bManualReset:longbool;bInitialState:longbool;lpName:pchar): THandle; stdcall; external KernelDLL name 'CreateEventA';
- function ResetEvent(hEvent:THandle):LONGBOOL; stdcall; external KernelDLL name 'ResetEvent';
- function SetEvent(hEvent:THandle):LONGBOOL; stdcall; external KernelDLL name 'SetEvent';
- {$endif WINCE}
- CONST
- WAIT_OBJECT_0 = 0;
- WAIT_ABANDONED_0 = $80;
- WAIT_TIMEOUT = $102;
- WAIT_IO_COMPLETION = $c0;
- WAIT_ABANDONED = $80;
- WAIT_FAILED = $ffffffff;
- {*****************************************************************************
- Threadvar support
- *****************************************************************************}
- const
- threadvarblocksize : dword = 0;
- var
- TLSKey : Dword;
- procedure SysInitThreadvar(var offset : dword;size : dword);
- begin
- offset:=threadvarblocksize;
- {$ifdef CPUARM}
- // Data must be allocated at 4 bytes boundary for ARM
- size:=(size + 3) and not dword(3);
- {$endif CPUARM}
- inc(threadvarblocksize,size);
- end;
- function SysRelocateThreadvar(offset : dword) : pointer;
- begin
- SysRelocateThreadvar:=TlsGetValue(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(LocalAlloc(LMEM_FIXED or LMEM_ZEROINIT,threadvarblocksize));
- TlsSetValue(tlskey,dataindex);
- end;
- procedure SysReleaseThreadVars;
- begin
- LocalFree(TlsGetValue(tlskey));
- end;
- {*****************************************************************************
- Thread starting
- *****************************************************************************}
- type
- pthreadinfo = ^tthreadinfo;
- tthreadinfo = record
- f : tthreadfunc;
- p : pointer;
- stklen : cardinal;
- end;
- procedure DoneThread;
- begin
- { Release Threadvars }
- SysReleaseThreadVars;
- end;
- function ThreadMain(param : pointer) : Longint; stdcall;
- var
- ti : tthreadinfo;
- begin
- { Allocate local thread vars, this must be the first thing,
- because the exception management and io depends on threadvars }
- SysAllocateThreadVars;
- { 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:=ti.f(ti.p);
- end;
- function SysBeginThread(sa : Pointer;stacksize : ptruint;
- ThreadFunction : tthreadfunc;p : pointer;
- creationFlags : dword;var ThreadId : TThreadID) : TThreadID;
- var
- ti : pthreadinfo;
- _threadid : DWord;
- begin
- {$ifdef DEBUG_MT}
- writeln('Creating new thread');
- {$endif DEBUG_MT}
- { Initialize multithreading if not done }
- if not IsMultiThread then
- begin
- { We're still running in single thread mode, setup the TLS }
- TLSKey:=TlsAlloc;
- InitThreadVars(@SysRelocateThreadvar);
- 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}
- _threadid:=ThreadID;
- SysBeginThread:=CreateThread(sa,stacksize,@ThreadMain,ti,creationflags,_threadid);
- ThreadID:=_threadid;
- end;
- procedure SysEndThread(ExitCode : DWord);
- begin
- DoneThread;
- ExitThread(ExitCode);
- end;
- procedure SysThreadSwitch;
- begin
- Sleep(0);
- end;
- function SysSuspendThread (threadHandle : TThreadID) : dword;
- begin
- SysSuspendThread:=WinSuspendThread(threadHandle);
- end;
- function SysResumeThread (threadHandle : TThreadID) : dword;
- begin
- SysResumeThread:=WinResumeThread(threadHandle);
- end;
- function SysKillThread (threadHandle : TThreadID) : dword;
- var exitCode : dword;
- begin
- if not TerminateThread (threadHandle, exitCode) then
- SysKillThread := GetLastError
- else
- SysKillThread := 0;
- end;
- function SysWaitForThreadTerminate (threadHandle : TThreadID; TimeoutMs : longint) : dword;
- begin
- if timeoutMs = 0 then dec (timeoutMs); // $ffffffff is INFINITE
- SysWaitForThreadTerminate := WaitForSingleObject(threadHandle, TimeoutMs);
- end;
- function SysThreadSetPriority (threadHandle : TThreadID; Prio: longint): boolean; {-15..+15, 0=normal}
- begin
- SysThreadSetPriority:=WinThreadSetPriority(threadHandle,Prio);
- end;
- function SysThreadGetPriority (threadHandle : TThreadID): longint;
- begin
- SysThreadGetPriority:=WinThreadGetPriority(threadHandle);
- end;
- function SysGetCurrentThreadId : TThreadID;
- begin
- SysGetCurrentThreadId:=Win32GetCurrentThreadId;
- end;
- {*****************************************************************************
- Delphi/Win32 compatibility
- *****************************************************************************}
- procedure WinInitCriticalSection(var cs : TRTLCriticalSection);
- stdcall;external KernelDLL name 'InitializeCriticalSection';
- procedure WinDoneCriticalSection(var cs : TRTLCriticalSection);
- stdcall;external KernelDLL name 'DeleteCriticalSection';
- procedure WinEnterCriticalSection(var cs : TRTLCriticalSection);
- stdcall;external KernelDLL name 'EnterCriticalSection';
- procedure WinLeaveCriticalSection(var cs : TRTLCriticalSection);
- stdcall;external KernelDLL name 'LeaveCriticalSection';
- procedure SySInitCriticalSection(var cs);
- begin
- WinInitCriticalSection(PRTLCriticalSection(@cs)^);
- end;
- procedure SysDoneCriticalSection(var cs);
- begin
- WinDoneCriticalSection(PRTLCriticalSection(@cs)^);
- end;
- procedure SysEnterCriticalSection(var cs);
- begin
- WinEnterCriticalSection(PRTLCriticalSection(@cs)^);
- end;
- procedure SySLeaveCriticalSection(var cs);
- begin
- WinLeaveCriticalSection(PRTLCriticalSection(@cs)^);
- end;
- {*****************************************************************************
- Heap Mutex Protection
- *****************************************************************************}
- var
- HeapMutex : TRTLCriticalSection;
- procedure Win32HeapMutexInit;
- begin
- InitCriticalSection(heapmutex);
- end;
- procedure Win32HeapMutexDone;
- begin
- DoneCriticalSection(heapmutex);
- end;
- procedure Win32HeapMutexLock;
- begin
- EnterCriticalSection(heapmutex);
- end;
- procedure Win32HeapMutexUnlock;
- begin
- LeaveCriticalSection(heapmutex);
- end;
- const
- Win32MemoryMutexManager : TMemoryMutexManager = (
- MutexInit : @Win32HeapMutexInit;
- MutexDone : @Win32HeapMutexDone;
- MutexLock : @Win32HeapMutexLock;
- MutexUnlock : @Win32HeapMutexUnlock;
- );
- procedure InitHeapMutexes;
- begin
- SetMemoryMutexManager(Win32MemoryMutexManager);
- end;
- Const
- wrSignaled = 0;
- wrTimeout = 1;
- wrAbandoned= 2;
- wrError = 3;
- type Tbasiceventstate=record
- fhandle : THandle;
- flasterror : longint;
- end;
- plocaleventrec= ^tbasiceventstate;
- function intBasicEventCreate(EventAttributes : Pointer;
- AManualReset,InitialState : Boolean;const Name : ansistring):pEventState;
- begin
- new(plocaleventrec(result));
- plocaleventrec(result)^.FHandle := CreateEvent(EventAttributes, AManualReset, InitialState,PChar(Name));
- end;
- procedure intbasiceventdestroy(state:peventstate);
- begin
- closehandle(plocaleventrec(state)^.fhandle);
- dispose(plocaleventrec(state));
- end;
- procedure intbasiceventResetEvent(state:peventstate);
- begin
- ResetEvent(plocaleventrec(state)^.FHandle)
- end;
- procedure intbasiceventSetEvent(state:peventstate);
- begin
- SetEvent(plocaleventrec(state)^.FHandle);
- end;
- function intbasiceventWaitFor(Timeout : Cardinal;state:peventstate) : longint;
- begin
- case WaitForSingleObject(plocaleventrec(state)^.fHandle, Timeout) of
- WAIT_ABANDONED: Result := wrAbandoned;
- WAIT_OBJECT_0: Result := wrSignaled;
- WAIT_TIMEOUT: Result := wrTimeout;
- WAIT_FAILED:
- begin
- Result := wrError;
- plocaleventrec(state)^.FLastError := GetLastError;
- end;
- else
- Result := wrError;
- end;
- end;
- function intRTLEventCreate: PRTLEvent;
- begin
- Result := PRTLEVENT(CreateEvent(nil, false, false, nil));
- end;
- procedure intRTLEventDestroy(AEvent: PRTLEvent);
- begin
- CloseHandle(THANDLE(AEvent));
- end;
- procedure intRTLEventSetEvent(AEvent: PRTLEvent);
- begin
- SetEvent(THANDLE(AEvent));
- end;
- procedure intRTLEventResetEvent(AEvent: PRTLEvent);
- begin
- ResetEvent(THANDLE(AEvent));
- end;
- procedure intRTLEventStartWait(AEvent: PRTLEvent);
- begin
- { this is to get at least some common behaviour on unix and win32:
- events before startwait are lost on unix, so reset the event on
- win32 as well }
- ResetEvent(THANDLE(AEvent));
- end;
- procedure intRTLEventWaitFor(AEvent: PRTLEvent);
- const
- INFINITE=-1;
- begin
- WaitForSingleObject(THANDLE(AEvent), INFINITE);
- end;
- procedure intRTLEventWaitForTimeout(AEvent: PRTLEvent;timeout : longint);
- begin
- WaitForSingleObject(THANDLE(AEvent), timeout);
- end;
- Var
- WinThreadManager : TThreadManager;
- Procedure InitSystemThreads;
- begin
- With WinThreadManager do
- begin
- InitManager :=Nil;
- DoneManager :=Nil;
- BeginThread :=@SysBeginThread;
- EndThread :=@SysEndThread;
- SuspendThread :=@SysSuspendThread;
- ResumeThread :=@SysResumeThread;
- KillThread :=@SysKillThread;
- ThreadSwitch :=@SysThreadSwitch;
- WaitForThreadTerminate :=@SysWaitForThreadTerminate;
- ThreadSetPriority :=@SysThreadSetPriority;
- ThreadGetPriority :=@SysThreadGetPriority;
- GetCurrentThreadId :=@SysGetCurrentThreadId;
- InitCriticalSection :=@SysInitCriticalSection;
- DoneCriticalSection :=@SysDoneCriticalSection;
- EnterCriticalSection :=@SysEnterCriticalSection;
- LeaveCriticalSection :=@SysLeaveCriticalSection;
- InitThreadVar :=@SysInitThreadVar;
- RelocateThreadVar :=@SysRelocateThreadVar;
- AllocateThreadVars :=@SysAllocateThreadVars;
- ReleaseThreadVars :=@SysReleaseThreadVars;
- BasicEventCreate :=@intBasicEventCreate;
- BasicEventDestroy :=@intBasicEventDestroy;
- BasicEventResetEvent :=@intBasicEventResetEvent;
- BasicEventSetEvent :=@intBasicEventSetEvent;
- BasiceventWaitFor :=@intBasiceventWaitFor;
- RTLEventCreate :=@intRTLEventCreate;
- RTLEventDestroy :=@intRTLEventDestroy;
- RTLEventSetEvent :=@intRTLEventSetEvent;
- RTLEventResetEvent :=@intRTLEventResetEvent;
- RTLEventStartWait :=@intRTLEventStartWait;
- RTLEventWaitFor :=@intRTLEventWaitFor;
- RTLEventWaitForTimeout :=@intRTLEventWaitForTimeout;
- end;
- SetThreadManager(WinThreadManager);
- InitHeapMutexes;
- ThreadID := GetCurrentThreadID;
- end;
|