forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_pthread_mutex.cpp
More file actions
109 lines (99 loc) · 2.32 KB
/
Copy pathtest_pthread_mutex.cpp
File metadata and controls
109 lines (99 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <emscripten.h>
#include <emscripten/threading.h>
#include <unistd.h>
#define NUM_THREADS 8
int numThreadsToCreateTotal = 50;
pthread_t thread[NUM_THREADS] = {};
volatile int counter = 0; // Shared data
pthread_mutex_t lock;
void sleep(int msecs)
{
// Test two different variants of sleeping to verify
// against bug https://bugzilla.mozilla.org/show_bug.cgi?id=1131757
#ifdef SPINLOCK_TEST
double t0 = emscripten_get_now();
double t1 = t0 + (double)msecs;
while(emscripten_get_now() < t1)
;
#else
usleep(msecs*1000);
#endif
}
void *ThreadMain(void *arg)
{
pthread_mutex_lock(&lock);
int c = counter;
sleep(100); // Create contention on the lock.
++c;
counter = c;
pthread_mutex_unlock(&lock);
pthread_exit(0);
}
void CreateThread(int i, int n)
{
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
pthread_attr_setstacksize(&attr, 4*1024);
int rc = pthread_create(&thread[i], &attr, ThreadMain, 0);
if (rc != 0 || thread[i] == 0)
printf("Failed to create thread!\n");
pthread_attr_destroy(&attr);
}
int threadNum = 0;
void WaitToJoin()
{
int threadsRunning = 0;
// Join all threads.
for(int i = 0; i < NUM_THREADS; ++i)
{
if (thread[i])
{
void *status;
int rc = pthread_join(thread[i], &status);
if (rc == 0)
{
thread[i] = 0;
if (threadNum < numThreadsToCreateTotal)
{
CreateThread(i, threadNum++);
++threadsRunning;
}
}
else
++threadsRunning;
}
}
if (!threadsRunning)
{
if (counter == numThreadsToCreateTotal)
EM_ASM_INT( { console.log('All threads finished. Counter = ' + $0 + ' as expected.'); }, counter);
else
EM_ASM_INT( { console.error('All threads finished, but counter = ' + $0 + ' != ' + $1 + '!'); }, counter, numThreadsToCreateTotal);
#ifdef REPORT_RESULT
int result = counter;
REPORT_RESULT();
#endif
emscripten_cancel_main_loop();
}
}
int main()
{
pthread_mutex_init(&lock, NULL);
if (emscripten_has_threading_support()) {
// Create new threads in parallel.
for(int i = 0; i < NUM_THREADS; ++i)
CreateThread(i, threadNum++);
emscripten_set_main_loop(WaitToJoin, 0, 0);
} else {
pthread_mutex_lock(&lock);
pthread_mutex_unlock(&lock);
#ifdef REPORT_RESULT
int result = 50;
REPORT_RESULT();
#endif
}
}