source:
doc/theses/andrew_beach_MMath/code/cross-resume.cfa
@
54651005
Last change on this file since 54651005 was 54651005, checked in by , 3 years ago | |
---|---|
|
|
File size: 668 bytes |
Rev | Line | |
---|---|---|
[ea593a3] | 1 | // Cross a Try Statement With Finally Clause |
[ee23a8d] | 2 | #include <clock.hfa> |
[ea593a3] | 3 | #include <exception.hfa> |
[ee23a8d] | 4 | #include <fstream.hfa> |
[ea593a3] | 5 | #include <stdlib.hfa> |
6 | ||
7 | EHM_EXCEPTION(not_raised_exception)(); | |
8 | ||
9 | int main(int argc, char * argv[]) { | |
10 | unsigned int times = 1; | |
11 | unsigned int total_frames = 1; | |
[ee23a8d] | 12 | if (1 < argc) { |
[ea593a3] | 13 | times = strtol(argv[1], 0p, 10); |
14 | } | |
[ee23a8d] | 15 | if (2 < argc) { |
[ea593a3] | 16 | total_frames = strtol(argv[2], 0p, 10); |
17 | } | |
18 | ||
[47e413b] | 19 | Time start_time = timeHiRes(); |
[ea593a3] | 20 | for (unsigned int count = 0 ; count < times ; ++count) { |
21 | try { | |
[54651005] | 22 | asm volatile (""); |
[ea593a3] | 23 | } catchResume (not_raised_exception *) { |
[54651005] | 24 | asm volatile (""); |
[ea593a3] | 25 | } |
26 | } | |
[47e413b] | 27 | Time end_time = timeHiRes(); |
[ee23a8d] | 28 | sout | "Run-Time (ns): " | (end_time - start_time)`ns; |
[ea593a3] | 29 | } |
Note: See TracBrowser
for help on using the repository browser.