mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
* Allow host environmentto get main and self thread IDs. Needed for inter-thread messaging in browser
This commit is contained in:
parent
44282acecb
commit
0b3d059458
@ -118,6 +118,12 @@ begin
|
||||
GetSelfThread:=GlobalCurrentThread;
|
||||
end;
|
||||
|
||||
Function GetMainThread : TThreadID;
|
||||
|
||||
begin
|
||||
Result:=PWasmThread(@MainThread);
|
||||
end;
|
||||
|
||||
Function GetThreadState(aThread : TThreadID) : TThreadState;
|
||||
|
||||
begin
|
||||
@ -459,7 +465,7 @@ asm
|
||||
i32.atomic.store8
|
||||
end;
|
||||
|
||||
exports wasi_thread_start;
|
||||
exports wasi_thread_start, GetSelfThread, GetMainThread;
|
||||
|
||||
Function wasi_thread_spawn(start_arg: PWasmThread) : LongInt; external 'wasi' name 'thread-spawn';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user