2004-08-28 05:15:19 +04:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-08-28 05:15:19 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file **/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
2004-09-10 02:31:08 +04:00
|
|
|
#include <string.h>
|
2004-08-28 05:15:19 +04:00
|
|
|
#include "include/constants.h"
|
|
|
|
#include "util/proc_info.h"
|
|
|
|
#include "util/sys_info.h"
|
|
|
|
#include "runtime/runtime.h"
|
|
|
|
#include "util/output.h"
|
|
|
|
#include "event/event.h"
|
|
|
|
#include "threads/mutex.h"
|
|
|
|
#include "threads/condition.h"
|
|
|
|
#include "mca/oob/base/base.h"
|
|
|
|
#include "mca/oob/oob.h"
|
|
|
|
#include "mca/ns/ns.h"
|
|
|
|
#include "mca/ns/base/base.h"
|
|
|
|
#include "mca/gpr/gpr.h"
|
|
|
|
#include "mca/gpr/base/base.h"
|
|
|
|
|
|
|
|
|
|
|
|
static ompi_mutex_t ompi_rte_mutex;
|
|
|
|
static ompi_condition_t ompi_rte_condition;
|
|
|
|
static bool ompi_rte_job_started = false;
|
|
|
|
static bool ompi_rte_job_finished = false;
|
2004-09-23 20:12:45 +04:00
|
|
|
static bool ompi_rte_waiting = false;
|
2004-08-28 05:15:19 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change state as processes register/unregister. Note that we could save
|
|
|
|
* the list of registrations - and use the host/pid for cleanup later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-09-23 18:33:28 +04:00
|
|
|
void ompi_rte_all_procs_registered(ompi_registry_notify_message_t* match, void* cbdata)
|
2004-08-28 05:15:19 +04:00
|
|
|
{
|
2004-11-20 22:12:43 +03:00
|
|
|
if (ompi_rte_debug_flag) {
|
|
|
|
ompi_output(0, "[%d,%d,%d] all procs registered",
|
|
|
|
OMPI_NAME_ARGS(*ompi_rte_get_self()));
|
|
|
|
}
|
|
|
|
|
2004-08-28 05:15:19 +04:00
|
|
|
OMPI_THREAD_LOCK(&ompi_rte_mutex);
|
|
|
|
ompi_rte_job_started = true;
|
2004-09-30 01:54:57 +04:00
|
|
|
if (ompi_rte_waiting) {
|
|
|
|
ompi_condition_signal(&ompi_rte_condition);
|
|
|
|
}
|
2004-08-28 05:15:19 +04:00
|
|
|
OMPI_THREAD_UNLOCK(&ompi_rte_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-23 18:33:28 +04:00
|
|
|
void ompi_rte_all_procs_unregistered(ompi_registry_notify_message_t* match, void* cbdata)
|
2004-08-28 05:15:19 +04:00
|
|
|
{
|
|
|
|
OMPI_THREAD_LOCK(&ompi_rte_mutex);
|
|
|
|
ompi_rte_job_finished = true;
|
2004-09-23 20:12:45 +04:00
|
|
|
if (ompi_rte_waiting) {
|
|
|
|
ompi_condition_signal(&ompi_rte_condition);
|
|
|
|
}
|
2004-08-28 05:15:19 +04:00
|
|
|
OMPI_THREAD_UNLOCK(&ompi_rte_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TSW - This is a temporary solution - that only handles graceful
|
|
|
|
* shutdown....
|
|
|
|
*/
|
|
|
|
|
2004-09-23 18:33:28 +04:00
|
|
|
int ompi_rte_monitor_procs_registered(void)
|
2004-08-28 05:15:19 +04:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
struct timespec ts;
|
|
|
|
|
|
|
|
OBJ_CONSTRUCT(&ompi_rte_mutex, ompi_mutex_t);
|
|
|
|
OBJ_CONSTRUCT(&ompi_rte_condition, ompi_condition_t);
|
|
|
|
|
|
|
|
/* block until a timeout occurs or all processes have registered */
|
|
|
|
gettimeofday(&tv, NULL);
|
2004-09-30 01:54:57 +04:00
|
|
|
ts.tv_sec = tv.tv_sec + 1000000;
|
2004-08-28 05:15:19 +04:00
|
|
|
ts.tv_nsec = 0;
|
|
|
|
|
|
|
|
OMPI_THREAD_LOCK(&ompi_rte_mutex);
|
|
|
|
if(ompi_rte_job_started == false) {
|
2004-09-30 01:54:57 +04:00
|
|
|
ompi_rte_waiting = true;
|
2004-08-28 05:15:19 +04:00
|
|
|
ompi_condition_timedwait(&ompi_rte_condition, &ompi_rte_mutex, &ts);
|
2004-09-30 01:54:57 +04:00
|
|
|
ompi_rte_waiting = false;
|
2004-08-28 05:15:19 +04:00
|
|
|
if(ompi_rte_job_started == false) {
|
|
|
|
ompi_mutex_unlock(&ompi_rte_mutex);
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2004-09-23 18:33:28 +04:00
|
|
|
OMPI_THREAD_UNLOCK(&ompi_rte_mutex);
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
2004-08-28 05:15:19 +04:00
|
|
|
|
2004-09-23 18:33:28 +04:00
|
|
|
int ompi_rte_monitor_procs_unregistered(void)
|
|
|
|
{
|
|
|
|
OMPI_THREAD_LOCK(&ompi_rte_mutex);
|
2004-08-28 05:15:19 +04:00
|
|
|
/* wait for all processes to complete */
|
|
|
|
while(ompi_rte_job_finished == false) {
|
2004-09-23 20:12:45 +04:00
|
|
|
ompi_rte_waiting = true;
|
|
|
|
ompi_condition_wait(&ompi_rte_condition, &ompi_rte_mutex);
|
2004-09-30 01:54:57 +04:00
|
|
|
ompi_rte_waiting = false;
|
2004-08-28 05:15:19 +04:00
|
|
|
}
|
2004-09-23 20:12:45 +04:00
|
|
|
|
2004-08-28 05:15:19 +04:00
|
|
|
OMPI_THREAD_UNLOCK(&ompi_rte_mutex);
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|