1
1

Probe now functional! At least, it now at least runs. Next need to complete its operations

This commit was SVN r5739.
Этот коммит содержится в:
Ralph Castain 2005-05-17 20:19:38 +00:00
родитель 56475f64a3
Коммит 3232200e51

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

@ -169,7 +169,6 @@ int main(int argc, char *argv[])
} }
} }
fprintf(stderr, "opening output streams\n");
/* Open up the output streams */ /* Open up the output streams */
if (!ompi_output_init()) { if (!ompi_output_init()) {
return OMPI_ERROR; return OMPI_ERROR;
@ -183,31 +182,27 @@ fprintf(stderr, "opening output streams\n");
/* For malloc debugging */ /* For malloc debugging */
ompi_malloc_init(); ompi_malloc_init();
fprintf(stderr, "init universe info\n");
/* Ensure the universe_info structure is instantiated and initialized */
if (ORTE_SUCCESS != (ret = orte_univ_info())) {
return ret;
}
fprintf(stderr, "init system info\n");
/* Ensure the system_info structure is instantiated and initialized */
if (ORTE_SUCCESS != (ret = orte_sys_info())) {
return ret;
}
fprintf(stderr, "init process info\n");
/* Ensure the process info structure is instantiated and initialized */
if (ORTE_SUCCESS != (ret = orte_proc_info())) {
return ret;
}
fprintf(stderr, "init mca\n");
/* /*
* Initialize the MCA framework * Initialize the MCA framework
*/ */
if (OMPI_SUCCESS != (ret = mca_base_open())) { if (OMPI_SUCCESS != (ret = mca_base_open())) {
return ret; return ret;
} }
fprintf(stderr, "init dps\n");
/* Ensure the system_info structure is instantiated and initialized */
if (ORTE_SUCCESS != (ret = orte_sys_info())) {
return ret;
}
/* Ensure the process info structure is instantiated and initialized */
if (ORTE_SUCCESS != (ret = orte_proc_info())) {
return ret;
}
/* Ensure the universe_info structure is instantiated and initialized */
if (ORTE_SUCCESS != (ret = orte_univ_info())) {
return ret;
}
/* /*
* Initialize the data packing service. * Initialize the data packing service.
@ -216,21 +211,21 @@ fprintf(stderr, "init dps\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "init ns\n");
/* /*
* Open the name services to ensure access to local functions * Open the name services to ensure access to local functions
*/ */
if (OMPI_SUCCESS != (ret = orte_ns_base_open())) { if (OMPI_SUCCESS != (ret = orte_ns_base_open())) {
return ret; return ret;
} }
fprintf(stderr, "init errmgr\n");
/* Open the error manager to activate error logging - needs local name services */ /* Open the error manager to activate error logging - needs local name services */
if (ORTE_SUCCESS != (ret = orte_errmgr_base_open())) { if (ORTE_SUCCESS != (ret = orte_errmgr_base_open())) {
return ret; return ret;
} }
/***** ERROR LOGGING NOW AVAILABLE *****/ /***** ERROR LOGGING NOW AVAILABLE *****/
fprintf(stderr, "init event\n");
/* /*
* Initialize the event library * Initialize the event library
*/ */
@ -238,7 +233,7 @@ fprintf(stderr, "init event\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "init progress\n");
/* /*
* Intialize the general progress engine * Intialize the general progress engine
*/ */
@ -246,7 +241,7 @@ fprintf(stderr, "init progress\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "init wait\n");
/* /*
* Internal startup * Internal startup
*/ */
@ -254,7 +249,7 @@ fprintf(stderr, "init wait\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "init rml\n");
/* /*
* Runtime Messaging Layer * Runtime Messaging Layer
*/ */
@ -262,7 +257,7 @@ fprintf(stderr, "init rml\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "select rml\n");
/* /*
* Runtime Messaging Layer * Runtime Messaging Layer
*/ */
@ -270,7 +265,7 @@ fprintf(stderr, "select rml\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "init gpr\n");
/* /*
* Registry * Registry
*/ */
@ -278,7 +273,7 @@ fprintf(stderr, "init gpr\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "init schema\n");
/* /*
* Initialize schema utilities * Initialize schema utilities
*/ */
@ -287,7 +282,7 @@ fprintf(stderr, "init schema\n");
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
return ret; return ret;
} }
fprintf(stderr, "universe exists\n");
/* see if a universe already exists on this machine */ /* see if a universe already exists on this machine */
if (ORTE_SUCCESS == (ret = orte_universe_exists(&univ))) { if (ORTE_SUCCESS == (ret = orte_universe_exists(&univ))) {
/* universe is here! send info back and die */ /* universe is here! send info back and die */
@ -307,13 +302,11 @@ fprintf(stderr, "universe exists\n");
if (NULL != log_path) { if (NULL != log_path) {
unlink(log_path); unlink(log_path);
} }
fprintf(stderr, "init and pack buffer\n");
OBJ_CONSTRUCT(&buffer, orte_buffer_t); OBJ_CONSTRUCT(&buffer, orte_buffer_t);
if (ORTE_SUCCESS != (ret = orte_dps.pack(&buffer, &ret, 1, ORTE_INT))) { if (ORTE_SUCCESS != (ret = orte_dps.pack(&buffer, &ret, 1, ORTE_INT))) {
ORTE_ERROR_LOG(ret); ORTE_ERROR_LOG(ret);
exit(1); exit(1);
} }
fprintf(stderr, "send buffer\n");
/* /*
* Attempt to parse the requestor's name and contact info * Attempt to parse the requestor's name and contact info
@ -324,6 +317,11 @@ fprintf(stderr, "send buffer\n");
fprintf(stderr, "Couldn't parse environmental string for requestor's contact info\n"); fprintf(stderr, "Couldn't parse environmental string for requestor's contact info\n");
return 1; return 1;
} }
/* set the contact info */
if (ORTE_SUCCESS != (ret = orte_rml.set_uri(orteprobe_globals.requestor_string))) {
fprintf(stderr, "Couldn't set contact info for requestor\n");
return ret;
}
} else { } else {
fprintf(stderr, "No contact info received for requestor\n"); fprintf(stderr, "No contact info received for requestor\n");
return 1; return 1;
@ -335,7 +333,7 @@ fprintf(stderr, "send buffer\n");
return ORTE_ERR_COMM_FAILURE; return ORTE_ERR_COMM_FAILURE;
} }
OBJ_DESTRUCT(&buffer); OBJ_DESTRUCT(&buffer);
fprintf(stderr, "probe complete\n");
/* finalize the system */ /* finalize the system */
orte_finalize(); orte_finalize();