get time diff from nTimeStart to now
| 42 | |
| 43 | // get time diff from nTimeStart to now |
| 44 | int Recorder::getMilliSpan(int nTimeStart) |
| 45 | { |
| 46 | nSpan = Recorder::getMilliCount() - nTimeStart; |
| 47 | if(nSpan < 0) |
| 48 | nSpan += 0x100000 * 1000; |
| 49 | return nSpan; |
| 50 | } |
| 51 | |
| 52 | // get time diff from nTimeStart to now |
| 53 | void Recorder::registTimeStamp() |
nothing calls this directly
no outgoing calls
no test coverage detected