REM Step 1: Remove previous compilation CALL rm *.html *.wasm *.js *.o *.tmp* REM Step 2: Compilation Options CALL em++ -c Side.cpp -pthread -fPIC -fexceptions -O3 -o foo2.o CALL em++ -c Main.cpp ...
I have an object that maintains a number of internal pthreads. In the object destructor, I want to kill any running internal threads. The thread executing the destructor will not be one of these ...