Merge pull request #10552 from RandomShaper/improve-posix

Improve Mac/UNIX conformance/reliability
This commit is contained in:
Rémi Verschelde
2017-08-29 00:07:07 +02:00
committed by GitHub
5 changed files with 35 additions and 5 deletions

View File

@ -41,6 +41,9 @@
class ThreadAndroid : public Thread {
static pthread_key_t thread_id_key;
static ID next_thread_id;
pthread_t pthread;
pthread_attr_t pthread_attr;
ThreadCreateCallback callback;