From 4d0e769b41057d89c89ec56e2345ae80b3e9d5f4 Mon Sep 17 00:00:00 2001 From: Michael Van Canneyt Date: Mon, 2 Dec 2024 21:26:51 +0100 Subject: [PATCH] * Fix some comments --- packages/wasi/src/rtl.webthreads.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/wasi/src/rtl.webthreads.pas b/packages/wasi/src/rtl.webthreads.pas index e22ca7f..90b196f 100644 --- a/packages/wasi/src/rtl.webthreads.pas +++ b/packages/wasi/src/rtl.webthreads.pas @@ -225,7 +225,7 @@ Type Args : Integer; end; - // Sent my main to thread controller worker: load and start a webassembly + // Sent by main to thread controller worker: execute function TWorkerExecuteCommand = class external name 'Object' (TWorkerCommand) public Url : String; @@ -233,7 +233,7 @@ Type Env : TJSObject; end; - // Sent my main to thread controller worker: load and start a webassembly + // Sent by main to thread controller worker: run function, return result TWorkerRpcCommand = class external name 'Object' (TWorkerCommand) public method : string; @@ -242,7 +242,6 @@ Type jsonrpc : string; end; - // Sent my main to thread controller worker: load and start a webassembly TWorkerRPCError = class external name 'Object' (TJSObject) code : integer; message : string; @@ -261,6 +260,7 @@ Type { TWorkerRunCommandHelper } + // Sent by main to thread controller worker: load and start a webassembly TWorkerRunCommandHelper = class helper for TWorkerRunCommand Class function CommandName : string; static; Class function Create(aThreadID, aArgs : Longint): TWorkerRunCommand; static; reintroduce;