1
1

Move the "dvm ready" message to stdout so it is easier to trap

Этот коммит содержится в:
Ralph Castain 2015-03-30 20:12:56 -07:00
родитель 6d205a3c80
Коммит b209c9efa5

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

@ -218,7 +218,7 @@ static void vm_ready(int fd, short args, void *cbdata)
/* if this is my job, then we are done */
if (ORTE_PROC_MY_NAME->jobid == caddy->jdata->jobid) {
/* notify that the vm is ready */
opal_output(0, "DVM ready");
fprintf(stdout, "DVM ready\n");
OBJ_RELEASE(caddy);
return;
}