Changeset 1880 for features/performance/src/common/timer.h
- Timestamp:
- 07/18/07 20:52:55 (18 months ago)
- Files:
-
- 1 modified
-
features/performance/src/common/timer.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
features/performance/src/common/timer.h
r1854 r1880 122 122 } while(0) 123 123 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 132 124 #endif 133
