From dada472c133ea85c5daacb8a49f829aae183b24d Mon Sep 17 00:00:00 2001 From: Josh Hursey Date: Wed, 27 Jun 2007 00:54:18 +0000 Subject: [PATCH] some additional debugging output This commit was SVN r15218. --- opal/tools/opal-checkpoint/opal-checkpoint.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/opal/tools/opal-checkpoint/opal-checkpoint.c b/opal/tools/opal-checkpoint/opal-checkpoint.c index 5cea347b7e..b38dca8145 100644 --- a/opal/tools/opal-checkpoint/opal-checkpoint.c +++ b/opal/tools/opal-checkpoint/opal-checkpoint.c @@ -364,11 +364,15 @@ notify_process_for_checkpoint(pid_t pid, char **fname, int term, opal_crs_state_ */ if( 0 > (ret = access(prog_named_pipe_r, F_OK) )) { /* File doesn't exist yet, keep waiting */ + opal_output(0, "opal-checkpoint: File does not exit yet: <%s> rtn = %d (waited %d/%d sec)\n", + prog_named_pipe_r, ret, s, max_wait_time); sleep(1); continue; } else if( 0 > (ret = access(prog_named_pipe_w, F_OK) )) { /* File doesn't exist yet, keep waiting */ + opal_output(0, "opal-checkpoint: File does not exit yet: <%s> rtn = %d (waited %d/%d sec)\n", + prog_named_pipe_w, ret, s, max_wait_time); sleep(1); continue; }