ADT
ast-experimental
Last change
on this file since 703c88e was 2316525, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago |
update benchmarks for concurrency paper
|
-
Property mode
set to
100644
|
File size:
397 bytes
|
Rev | Line | |
---|
[73abe95] | 1 | #include <monitor.hfa>
|
---|
[f54a0ab] | 2 | #include <stdio.h>
|
---|
| 3 |
|
---|
| 4 | #include "bench.h"
|
---|
| 5 |
|
---|
| 6 |
|
---|
[2316525] | 7 | monitor M {} m1, m2, m3, m4;
|
---|
| 8 | void __attribute__((noinline)) call( M & mutex p1, M & mutex p2, M & mutex p3, M & mutex p4 ) {}
|
---|
[f54a0ab] | 9 |
|
---|
[b4107c8] | 10 | int main( int argc, char * argv[] ) {
|
---|
| 11 | BENCH_START()
|
---|
[f54a0ab] | 12 | BENCH(
|
---|
[2316525] | 13 | for ( times ) {
|
---|
[b4107c8] | 14 | call( m1, m2, m3, m4 );
|
---|
[f54a0ab] | 15 | },
|
---|
| 16 | result
|
---|
| 17 | )
|
---|
[b4107c8] | 18 | printf( "%g\n", result );
|
---|
[dc33b5b] | 19 | }
|
---|
[b4107c8] | 20 |
|
---|
| 21 | // Local Variables: //
|
---|
| 22 | // tab-width: 4 //
|
---|
| 23 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.