* Add Current and CurrentIsMain

This commit is contained in:
Michaël Van Canneyt 2024-01-15 14:19:42 +01:00
parent f506df022e
commit 49100cc42b
2 changed files with 9 additions and 0 deletions

View File

@ -434,6 +434,13 @@ procedure TThread.DoneSynchronizeEvent;
end;
class function TThread.CurrentIsMain : Boolean;
begin
Result:=TThread.Current.ThreadID=MainThreadID;
end;
class procedure TThread.Synchronize(AThread: TThread; AMethod: TThreadMethod);
var
syncentry: PThreadQueueEntry;

View File

@ -2328,7 +2328,9 @@ type
procedure Suspend; deprecated;
procedure Terminate;
function WaitFor: Integer;
class function CurrentIsMain : Boolean; static; inline;
class property CurrentThread: TThread read GetCurrentThread;
class property Current: TThread read GetCurrentThread;
class property ProcessorCount: LongWord read FProcessorCount;
class property IsSingleProcessor: Boolean read GetIsSingleProcessor;
property FreeOnTerminate: Boolean read FFreeOnTerminate write FFreeOnTerminate;