Show
Ignore:
Timestamp:
07/18/07 20:52:55 (18 months ago)
Author:
aturner
Message:

commit work in progress. this doesn't seem to actually work though. :(
Anyways, this just commits my work up to this point, but at some point it's
going to need to be reworked. refs #41

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • features/performance/src/common/timer.h

    r1854 r1880  
    122122        } while(0) 
    123123 
    124  
    125 /* device tvp by x.  store in tvp */ 
    126 #define timerdiv2(tvp, x)                                               \ 
    127         do {                                                                    \ 
    128                 (tvp)->tv_sec = (tvp)->tv_sec / x;              \ 
    129                 (tvp)->tv_usec = (tvp)->tv_usec / x;    \ 
    130         } while(0) 
    131  
    132124#endif 
    133