1
1
This commit was SVN r11463.
Этот коммит содержится в:
Gleb Natapov 2006-08-28 10:27:27 +00:00
родитель 07b8d3c72c
Коммит 40ca1dd2d4

Просмотреть файл

@ -42,9 +42,9 @@ double MPI_Wtick(void)
#if OPAL_TIMER_USEC_NATIVE
return 0.000001;
#else
if( (opal_timer_t)0 == opal_timer_base_get_freq() ) {
opal_output( 0, "No timer frequency\n" );
}
return (double)opal_timer_base_get_freq();
#endif /* OPAL_TIMER_USEC_NATIVE */
if( (opal_timer_t)0 == opal_timer_base_get_freq() ) {
opal_output( 0, "No timer frequency\n" );
}
return (double)opal_timer_base_get_freq();
#endif /* OPAL_TIMER_USEC_NATIVE */
}