1
1

* fix off by one error that was causing the event library to only be

triggered every other call to opal_progress when the TCP BTL/PTL
  were being used.

This commit was SVN r6822.
Этот коммит содержится в:
Brian Barrett 2005-08-12 15:20:37 +00:00
родитель 9cbcdae14b
Коммит aab684f159

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

@ -207,7 +207,7 @@ opal_progress(void)
enabled */
if (event_progress_counter-- <= 0 && opal_progress_event_flag != 0) {
event_progress_counter =
(event_num_mpi_users > 0) ? 1 : event_progress_counter_reset;
(event_num_mpi_users > 0) ? 0 : event_progress_counter_reset;
events += opal_event_loop(opal_progress_event_flag);
}
#endif