Changes in benchmark/creation/cfa_thrd.cfa [dc33b5b:5e49e47]
- File:
-
- 1 edited
-
benchmark/creation/cfa_thrd.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/creation/cfa_thrd.cfa
rdc33b5b r5e49e47 5 5 6 6 thread MyThread {}; 7 void main(MyThread & ) {}7 void main(MyThread & this) {} 8 8 9 9 int main(int argc, char* argv[]) { 10 10 BENCH( 11 for ( i; n) {11 for (size_t i = 0; i < n; i++) { 12 12 MyThread m; 13 13 }, … … 15 15 ) 16 16 17 printf("% g\n", result);17 printf("%llu\n", result); 18 18 }
Note:
See TracChangeset
for help on using the changeset viewer.