| 627 | cb_passed_time += cb_stop_time.millitm - cb_start_time.millitm; |
| 628 | } |
| 629 | extern void |
| 630 | f2py_cb_stop_call_clock(void) |
| 631 | { |
| 632 | ftime(&cb_stop_call_time); |
| 633 | cb_passed_call_time += |
| 634 | 1000 * (cb_stop_call_time.time - cb_start_call_time.time); |
| 635 | cb_passed_call_time += |
| 636 | cb_stop_call_time.millitm - cb_start_call_time.millitm; |
| 637 | cb_passed_counter += 1; |
| 638 | f2py_cb_start_clock(); |
| 639 | } |
| 640 | |
| 641 | static int f2py_report_on_exit_been_here = 0; |
| 642 | extern void |
nothing calls this directly
no test coverage detected