summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/emscripten_threads.md
AgeCommit message (Collapse)Author
2020-03-29Update everything for new release.Jussi Pakkanen
2020-02-27compilers/mixins/emscripten: Implement thread supportDylan Baker
Emscripten has pthread support (as well as C++ threads), but we don't currently implement them. This fixes that by adding the necessary code. The one thing I'm not sure about is setting the pool size. The docs suggest that you really want to do this to ensure that your code works correctly, but the number should really be configurable, not sure how to set that. Fixes #6684