| 13 | long avgTime = 0; |
| 14 | |
| 15 | unsigned int operator-(const timespec& t1, const timespec& t2){ |
| 16 | return (t1.tv_sec - t2.tv_sec) * 1000000000 + (t1.tv_nsec - t2.tv_nsec); |
| 17 | } |
| 18 | timespec timer[msgCount]; |
| 19 | timespec newTimer[msgCount]; |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected