mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 20:08:52 +02:00
Compare commits
6 Commits
27a8684441
...
9dca53b502
Author | SHA1 | Date | |
---|---|---|---|
![]() |
9dca53b502 | ||
![]() |
fc43e66f05 | ||
![]() |
1a21ea41b8 | ||
![]() |
a1411d437a | ||
![]() |
bac7142256 | ||
![]() |
cc23153f8d |
File diff suppressed because it is too large
Load Diff
@ -359,6 +359,7 @@ implementation
|
||||
*****************************************************************************}
|
||||
|
||||
const
|
||||
DirectiveIgnored=pointer(1);
|
||||
{ use any special name that is an invalid file name to avoid problems }
|
||||
preprocstring : array [preproctyp] of string[7]
|
||||
= ('$IFDEF','$IFNDEF','$IF','$IFOPT','$ELSE','$ELSEIF');
|
||||
@ -4529,7 +4530,7 @@ type
|
||||
end
|
||||
else
|
||||
begin
|
||||
current_scanner.ignoredirectives.Add(hs,nil);
|
||||
current_scanner.ignoredirectives.Add(hs,DirectiveIgnored);
|
||||
Message1(scan_w_illegal_directive,'$'+hs);
|
||||
end;
|
||||
{ conditionals already read the comment }
|
||||
|
@ -399,12 +399,14 @@ procedure WasiAllocateThreadVars; forward;
|
||||
{$push}{$S-} // no stack checking for this procedure
|
||||
procedure FPCWasmThreadStartPascal(tid: longint; start_arg: PWasmThread);
|
||||
begin
|
||||
{$IFDEF DEBUGWASMTHREADS}DebugWriteln('FPCWasmThreadStartPascal(...)');{$ENDIF}
|
||||
{$IFDEF DEBUGWASMTHREADS}DebugWriteln('FPCWasmThreadStartPascal('+IntToStr(tid)+','+IntToStr(ptrint(start_arg))+')');{$ENDIF}
|
||||
|
||||
start_arg^.ID:=tid;
|
||||
GlobalCurrentThread:=@start_arg;
|
||||
GlobalCurrentThread:=start_arg;
|
||||
GlobalIsMainThread:=0;
|
||||
GlobalIsWorkerThread:=1;
|
||||
{$IFDEF DEBUGWASMTHREADS}DebugWriteln('Check : TID='+IntToStr(tid)+', start_arg_id='+IntToStr(start_arg^.ID)+', currentthread= '+IntTostr(ptrint(GetCurrentThreadID))+')');{$ENDIF}
|
||||
|
||||
{$IFDEF FPC_WASM_WORKER_THREADS_CAN_WAIT}
|
||||
GlobalIsThreadBlockable:=1;
|
||||
{$ELSE FPC_WASM_WORKER_THREADS_CAN_WAIT}
|
||||
@ -610,6 +612,7 @@ begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
|
||||
function WasiGetCurrentThreadId : TThreadID;
|
||||
begin
|
||||
Result:=GetSelfThread;
|
||||
|
@ -184,6 +184,9 @@ begin
|
||||
Resume;
|
||||
end;
|
||||
{$IFDEF DEBUGWASMTHREADS}DebugWriteln('TThread.SysDestroy: waiting on thread');{$ENDIF}
|
||||
// Before calling WaitFor, signal main thread with WakeMainThread, so pending checksynchronize calls are handled.
|
||||
if assigned(WakeMainThread) then
|
||||
WakeMainThread(Self);
|
||||
WaitFor;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user