1
1

Fix broken trunk compile after the libevent changes.

This commit was SVN r23929.
Этот коммит содержится в:
Abhishek Kulkarni 2010-10-25 14:11:48 +00:00
родитель 7394f6d167
Коммит c671ec52d1
2 изменённых файлов: 4 добавлений и 3 удалений

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

@ -512,7 +512,7 @@ int opal_crs_blcr_restart(opal_crs_base_snapshot_t *base_snapshot, bool spawn_ch
* along very well.
*/
opal_progress_finalize();
opal_event.fini();
opal_event.finalize();
if (!spawn_child) {
opal_output_verbose(10, mca_crs_blcr_component.super.output_handle,

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

@ -29,6 +29,7 @@
#include "opal/mca/base/mca_base_param.h"
#include "opal/mca/crs/crs.h"
#include "opal/mca/crs/base/base.h"
#include "opal/mca/event/event.h"
#include "orte/util/error_strings.h"
#include "orte/util/name_fns.h"
@ -511,10 +512,10 @@ static void errmgr_autor_process_fault_app(orte_job_t *jdata,
if( !autor_timer_active ) {
autor_timer_active = true;
opal_evtimer_set(autor_timer_event, errmgr_autor_recover_processes, NULL);
opal_event.evtimer_set(autor_timer_event, errmgr_autor_recover_processes, NULL);
soon.tv_sec = mca_errmgr_hnp_component.autor_recovery_delay;
soon.tv_usec = 0;
opal_evtimer_add(autor_timer_event, &soon);
opal_event.evtimer_add(autor_timer_event, &soon);
}
return;