Difference between revisions of "WebAssembly/Threads"

From Lazarus wiki
Jump to navigationJump to search
(Initial page)
 
Line 1: Line 1:
 
= Thread support =
 
= Thread support =
 +
 +
This page contains some collected informations on the features needed for thread support in WebAssembly (in the browser).
 +
 +
Thread support consists of 2 parts:
 +
 +
* Atomic instructions.
 +
* Actually starting a thread.
 +
  
 
== Atomic instructions ==
 
== Atomic instructions ==
  
 +
[https://github.com/WebAssembly/threads/blob/master/proposals/threads/Overview.md The proposed specs] 
  
 +
== Thread support ==
  
== Thread support ==
+
Webassembly relies on the hosting environment to actually start threads.
  
 
Some extra info:  
 
Some extra info:  

Revision as of 18:20, 23 May 2022

Thread support

This page contains some collected informations on the features needed for thread support in WebAssembly (in the browser).

Thread support consists of 2 parts:

  • Atomic instructions.
  • Actually starting a thread.


Atomic instructions

The proposed specs 

Thread support

Webassembly relies on the hosting environment to actually start threads.

Some extra info: