From b209c9efa5ca6d15d37edfdf37e9d60f6f6881cc Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 30 Mar 2015 20:12:56 -0700 Subject: [PATCH] Move the "dvm ready" message to stdout so it is easier to trap --- orte/mca/state/dvm/state_dvm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/state/dvm/state_dvm.c b/orte/mca/state/dvm/state_dvm.c index b09859084d..d795bbcaef 100644 --- a/orte/mca/state/dvm/state_dvm.c +++ b/orte/mca/state/dvm/state_dvm.c @@ -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; }