Skip to content

Commit 7aa64db

Browse files
authored
Update README.md
1 parent 0ab2582 commit 7aa64db

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,7 @@ pthread_t pthread_self(void);
9595
```
9696
This is currently highlighted in [[Design choice 2]](#tricky-design-choice-2)
9797

98-
All the functions below can be implemented WASI libc with existing constructs available in the language and don't require a new WASI function:
99-
```
100-
101-
// This is really tricky to use right.
102-
void pthread_exit(void *retval);
103-
104-
int pthread_yield(void);
105-
```
98+
All synchronization functions below can be implemented WASI libc with existing constructs available in the language (atomics) and don't require a new WASI function:
10699

107100
Mutexes:
108101
```

0 commit comments

Comments
 (0)