2005-03-14 23:57:21 +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.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file **/
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2005-03-23 20:50:12 +03:00
|
|
|
#include "include/orte_constants.h"
|
|
|
|
#include "mca/errmgr/errmgr.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-05-22 22:40:03 +04:00
|
|
|
#include "runtime/opal.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "runtime/runtime.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialze and setup a process in the ORTE.
|
|
|
|
*
|
|
|
|
* @retval ORTE_SUCCESS Upon success.
|
|
|
|
* @retval ORTE_ERROR Upon failure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* globals used by RTE */
|
2005-03-23 20:50:12 +03:00
|
|
|
int orte_debug_flag=(int)false;
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
int orte_init(void)
|
|
|
|
{
|
2005-03-23 20:50:12 +03:00
|
|
|
int rc;
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-05-22 22:40:03 +04:00
|
|
|
if (ORTE_SUCCESS != (rc = opal_init())) {
|
2005-03-23 20:50:12 +03:00
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
2005-05-22 22:40:03 +04:00
|
|
|
if (ORTE_SUCCESS != (rc = orte_system_init())) {
|
2005-03-23 20:50:12 +03:00
|
|
|
ORTE_ERROR_LOG(rc);
|
|
|
|
return rc;
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-05-01 04:58:06 +04:00
|
|
|
* This array is used to output intelligible error
|
2005-03-14 23:57:21 +03:00
|
|
|
* messages. It is disturbing to think that we are still outputing error numbers and
|
|
|
|
* expecting users to look them up in the "big book" to find out what they represent.
|
|
|
|
* This array allows the user to output an actual string representation of the error.
|
|
|
|
*
|
2005-05-01 04:47:35 +04:00
|
|
|
* THE CORRESPONDING MACRO IS DEFINED IN include/orte_schema.h
|
2005-03-14 23:57:21 +03:00
|
|
|
* AS IS THE EXTERN STATEMENT FOR ACCESSING THIS ARRAY
|
|
|
|
*/
|
|
|
|
|
|
|
|
char *orte_error_strings[] = {
|
|
|
|
"ORTE_SUCCESS",
|
|
|
|
"ORTE_ERROR",
|
|
|
|
"ORTE_ERR_OUT_OF_RESOURCE", /* fatal error */
|
|
|
|
"ORTE_ERR_TEMP_OUT_OF_RESOURCE", /* try again later */
|
|
|
|
"ORTE_ERR_RESOURCE_BUSY",
|
|
|
|
"ORTE_ERR_BAD_PARAM", /* equivalent to MPI_ERR_ARG error code */
|
|
|
|
"ORTE_ERR_RECV_LESS_THAN_POSTED",
|
|
|
|
"ORTE_ERR_RECV_MORE_THAN_POSTED",
|
|
|
|
"ORTE_ERR_NO_MATCH_YET",
|
|
|
|
"ORTE_ERR_FATAL",
|
|
|
|
"ORTE_ERR_NOT_IMPLEMENTED",
|
|
|
|
"ORTE_ERR_NOT_SUPPORTED",
|
|
|
|
"ORTE_ERR_INTERUPTED",
|
|
|
|
"ORTE_ERR_WOULD_BLOCK",
|
|
|
|
"ORTE_ERR_IN_ERRNO",
|
|
|
|
"ORTE_ERR_UNREACH",
|
|
|
|
"ORTE_ERR_NOT_FOUND",
|
|
|
|
"ORTE_ERR_BUFFER", /* equivalent to MPI_ERR_BUFFER */
|
|
|
|
"ORTE_ERR_REQUEST", /* equivalent to MPI_ERR_REQUEST */
|
|
|
|
"ORTE_EXISTS", /* indicates that the specified object already exists */
|
|
|
|
"ORTE_ERR_NO_CONNECTION_ALLOWED", /* indicates that the receiving process does not allow connections */
|
|
|
|
"ORTE_ERR_CONNECTION_REFUSED", /* contact made with process, but it refuses any further communication */
|
|
|
|
"ORTE_ERR_CONNECTION_FAILED", /* message sent, but delivery failed */
|
|
|
|
"ORTE_ERR_TIMEOUT",
|
|
|
|
"ORTE_STARTUP_DETECTED",
|
|
|
|
"ORTE_SHUTDOWN_DETECTED",
|
|
|
|
"ORTE_PROC_STARTING",
|
|
|
|
"ORTE_PROC_STOPPED",
|
|
|
|
"ORTE_PROC_TERMINATING",
|
|
|
|
"ORTE_PROC_ALIVE",
|
|
|
|
"ORTE_PROC_RUNNING",
|
|
|
|
"ORTE_PROC_KILLED",
|
|
|
|
"ORTE_PROC_EXITED",
|
|
|
|
"ORTE_NODE_UP",
|
|
|
|
"ORTE_NODE_DOWN",
|
|
|
|
"ORTE_NODE_BOOTING",
|
|
|
|
"ORTE_NODE_ERROR",
|
|
|
|
"ORTE_PACK_MISMATCH",
|
|
|
|
"ORTE_ERR_PACK_FAILURE",
|
|
|
|
"ORTE_ERR_UNPACK_FAILURE",
|
|
|
|
"ORTE_ERR_COMM_FAILURE",
|
|
|
|
"ORTE_UNPACK_INADEQUATE_SPACE",
|
|
|
|
"ORTE_UNPACK_READ_PAST_END_OF_BUFFER",
|
|
|
|
"ORTE_ERR_NOT_AVAILABLE",
|
|
|
|
"ORTE_ERR_GPR_DATA_CORRUPT",
|
2005-05-01 04:47:35 +04:00
|
|
|
"ORTE_ERR_PERM",
|
2005-05-06 21:00:06 +04:00
|
|
|
"ORTE_ERR_TYPE_MISMATCH",
|
2005-05-17 01:01:09 +04:00
|
|
|
"ORTE_ERR_VALUE_OUT_OF_BOUNDS",
|
|
|
|
"ORTE_ERR_FILE_READ_FAILURE",
|
2005-05-19 20:37:44 +04:00
|
|
|
"ORTE_ERR_FILE_WRITE_FAILURE",
|
|
|
|
"ORTE_ERR_FILE_OPEN_FAILURE"
|
2005-03-14 23:57:21 +03:00
|
|
|
};
|
|
|
|
|