mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
* Add Current and CurrentIsMain
This commit is contained in:
parent
f506df022e
commit
49100cc42b
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user