Implementation */
| 227 | |
| 228 | /* Implementation */ |
| 229 | static long long ustime(void) { |
| 230 | struct timeval tv; |
| 231 | long long ust; |
| 232 | |
| 233 | gettimeofday(&tv, NULL); |
| 234 | ust = ((long)tv.tv_sec)*1000000; |
| 235 | ust += tv.tv_usec; |
| 236 | return ust; |
| 237 | } |
| 238 | |
| 239 | static long long mstime(void) { |
| 240 | struct timeval tv; |
no outgoing calls
no test coverage detected