ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change
on this file since ef42b143 was
ef42b143,
checked in by Thierry Delisle <tdelisle@…>, 8 years ago
|
Implemented monitor keyword, and it works
|
-
Property mode set to
100644
|
File size:
812 bytes
|
Line | |
---|
1 | #include <fstream> |
---|
2 | #include <kernel> |
---|
3 | #include <monitor> |
---|
4 | #include <thread> |
---|
5 | |
---|
6 | struct global_t { |
---|
7 | int value; |
---|
8 | monitor_desc m; |
---|
9 | }; |
---|
10 | |
---|
11 | void ?{}(global_t * this) { |
---|
12 | this->value = 0; |
---|
13 | } |
---|
14 | |
---|
15 | monitor_desc * get_monitor( global_t * this ) { |
---|
16 | return &this->m; |
---|
17 | } |
---|
18 | |
---|
19 | static global_t global; |
---|
20 | |
---|
21 | void increment3( global_t * mutex this ) { |
---|
22 | this->value += 1; |
---|
23 | } |
---|
24 | |
---|
25 | void increment2( global_t * mutex this ) { |
---|
26 | increment3( this ); |
---|
27 | } |
---|
28 | |
---|
29 | void increment( global_t * mutex this ) { |
---|
30 | increment2( this ); |
---|
31 | } |
---|
32 | |
---|
33 | struct MyThread { thread_desc t; }; |
---|
34 | |
---|
35 | DECL_THREAD(MyThread); |
---|
36 | |
---|
37 | void ?{}( MyThread * this ) {} |
---|
38 | |
---|
39 | void main( MyThread* this ) { |
---|
40 | for(int i = 0; i < 1000000; i++) { |
---|
41 | increment( &global ); |
---|
42 | } |
---|
43 | } |
---|
44 | |
---|
45 | int main(int argc, char* argv[]) { |
---|
46 | assert( global.m.entry_queue.tail != NULL ); |
---|
47 | processor p; |
---|
48 | { |
---|
49 | scoped(MyThread) f[4]; |
---|
50 | } |
---|
51 | sout | global.value | endl; |
---|
52 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.