blob: 4ab5f1b94aeeee3f6383086b9f8fec8c1707b432 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include <pthread.h>
// XXX Emscripten marked as obsolescent in pthreads specification:
// http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_getconcurrency.html
int pthread_getconcurrency()
{
return 0;
}
|