| 599 | passed_time += stop_time.millitm - start_time.millitm; |
| 600 | } |
| 601 | extern void |
| 602 | f2py_stop_call_clock(void) |
| 603 | { |
| 604 | ftime(&stop_call_time); |
| 605 | passed_call_time += 1000 * (stop_call_time.time - start_call_time.time); |
| 606 | passed_call_time += stop_call_time.millitm - start_call_time.millitm; |
| 607 | passed_counter += 1; |
| 608 | f2py_start_clock(); |
| 609 | } |
| 610 | |
| 611 | extern void |
| 612 | f2py_cb_start_clock(void) |
nothing calls this directly
no test coverage detected