From: hadaq Date: Tue, 27 Mar 2012 07:55:20 +0000 (+0000) Subject: JAM: added output of return value of rfio_open in case of error X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=8964e3ffb00b5a2acb73b1088fe65d580e34c3fe;p=daqdata.git JAM: added output of return value of rfio_open in case of error --- diff --git a/hadaq/evtbuild.c b/hadaq/evtbuild.c index 2d66754..c131d51 100644 --- a/hadaq/evtbuild.c +++ b/hadaq/evtbuild.c @@ -1,4 +1,4 @@ -static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.160 2012-03-07 14:35:23 hadaq Exp $"; +static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.161 2012-03-27 07:55:20 hadaq Exp $"; #define _POSIX_C_SOURCE 199309L #define SYSLOG_NAMES @@ -26,7 +26,6 @@ static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hada #include #include - #include #include "grmblfx.h" @@ -704,17 +703,20 @@ static int openFile(TheArgs *theArgs, TheStats *theStats) #ifdef RFIO /* open file on Data Mover */ if (fRemote != NULL) { + int rev; char rfioPath[_POSIX_PATH_MAX]; strcpy(rfioPath, theArgs->rfioRemotePath); strcat(rfioPath, "/"); strcat(rfioPath, fileName); fprintf(stderr, " evtbuild.c, rfio_fnewfile(): trying to open remote file %s\n", rfioPath); - if (0 != rfio_fnewfile(fRemote, rfioPath)) { - sprintf(msglog, " %s, %d: rfio_fnewfile: failed to open file %s: %s", __FILE__, __LINE__, rfioPath, strerror(errno)); + rev = rfio_fnewfile(fRemote, rfioPath); + if (rev != 0) { + sprintf(msglog, " %s, %d: rfio_fnewfile: failed to open file %s: %s, returncode:%d", __FILE__, __LINE__, rfioPath, + strerror(errno), rev); storeLogInfo(theArgs, msglog); - syslog(LOG_ERR, "%s, %d: rfio_fnewfile: failed to open remote file %s: %s", __FILE__, __LINE__, rfioPath, - strerror(errno)); + syslog(LOG_ERR, "%s, %d: rfio_fnewfile: failed to open remote file %s: %s, returncode:%d", __FILE__, __LINE__, rfioPath, + strerror(errno), rev); exit(EXIT_FAILURE); } }