mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-11 18:49:14 +02:00
* compilation fix - CloseThrad typo from r15072
git-svn-id: trunk@15124 -
This commit is contained in:
parent
36125b623a
commit
86f1e52505
@ -255,6 +255,7 @@ end;
|
|||||||
|
|
||||||
function SysCloseThread (threadHandle : TThreadID) : dword;
|
function SysCloseThread (threadHandle : TThreadID) : dword;
|
||||||
begin
|
begin
|
||||||
|
SysCloseThread := 0;
|
||||||
// SysCloseThread:=CloseHandle(threadHandle);
|
// SysCloseThread:=CloseHandle(threadHandle);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -455,7 +456,7 @@ begin
|
|||||||
WaitForThreadTerminate :=@SysWaitForThreadTerminate;
|
WaitForThreadTerminate :=@SysWaitForThreadTerminate;
|
||||||
ThreadSetPriority :=@SysThreadSetPriority;
|
ThreadSetPriority :=@SysThreadSetPriority;
|
||||||
ThreadGetPriority :=@SysThreadGetPriority;
|
ThreadGetPriority :=@SysThreadGetPriority;
|
||||||
CloseThrad :=@SysCloseThread;
|
CloseThread :=@SysCloseThread;
|
||||||
GetCurrentThreadId :=@SysGetCurrentThreadId;
|
GetCurrentThreadId :=@SysGetCurrentThreadId;
|
||||||
InitCriticalSection :=@SysInitCriticalSection;
|
InitCriticalSection :=@SysInitCriticalSection;
|
||||||
DoneCriticalSection :=@SysDoneCriticalSection;
|
DoneCriticalSection :=@SysDoneCriticalSection;
|
||||||
|
Loading…
Reference in New Issue
Block a user