Changes in benchmark/benchcltr.hfa [e54d0c3:6528d75]
- File:
-
- 1 edited
-
benchmark/benchcltr.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/benchcltr.hfa
re54d0c3 r6528d75 114 114 for() { 115 115 sleep(100`ms); 116 end = time HiRes();116 end = timeNsec(); 117 117 Duration delta = end - start; 118 118 /*if(is_tty)*/ { … … 126 126 } 127 127 #else 128 uint64_t time HiRes() {128 uint64_t timeNsec() { 129 129 timespec curr; 130 130 clock_gettime( CLOCK_REALTIME, &curr ); … … 140 140 for(;;) { 141 141 usleep(100000); 142 end = time HiRes();142 end = timeNsec(); 143 143 uint64_t delta = end - start; 144 144 /*if(is_tty)*/ {
Note:
See TracChangeset
for help on using the changeset viewer.