Skip to content

Commit 317ff10

Browse files
authored
Update README.md
1 parent 7aa64db commit 317ff10

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ void *pthread_getspecific(pthread_key_t key);
152152
int pthread_key_delete(pthread_key_t key);
153153
```
154154

155+
Extra ones:
156+
```
157+
pthread_yield
158+
```
159+
155160
#### [Tricky design choice #1]
156161

157162
This could be implemented either by cloning the current Wasm instance and executing it on another thread, or by having the instance shared amonst threads. Cloning the instance means that all the WASM constructs such as: Wasm globals (not C++ globals, these live in the Wasm linear memory, not the instance data), function tables will be thread local.

0 commit comments

Comments
 (0)