Compare commits

...

6 Commits

Author SHA1 Message Date
Rika
9dca53b502 Merge branch 'vihash' into 'main'
Draft: cclasses.TFPHashList revamp.

See merge request freepascal.org/fpc/source!132
2025-04-03 21:50:11 +03:00
Michaël Van Canneyt
fc43e66f05 * Wake main thread when a thread is auto freed 2025-04-03 17:12:20 +02:00
Michaël Van Canneyt
1a21ea41b8 * Correctly set current thread 2025-04-03 16:26:31 +02:00
Rika Ichinose
a1411d437a Fix ignoring directives. 2025-02-07 00:40:39 +03:00
Rika Ichinose
bac7142256 Use bitpacked indices in TViHashList. 2025-02-07 00:40:39 +03:00
Rika Ichinose
cc23153f8d TFPHashList revamp. 2025-02-07 00:40:39 +03:00
4 changed files with 645 additions and 536 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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 }

View File

@ -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;

View File

@ -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;