]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
JAM: added output of return value of rfio_open in case of error
authorhadaq <hadaq>
Tue, 27 Mar 2012 07:55:20 +0000 (07:55 +0000)
committerhadaq <hadaq>
Tue, 27 Mar 2012 07:55:20 +0000 (07:55 +0000)
hadaq/evtbuild.c

index 2d6675424ff1ca22bfadb2a352f5d5bc85ce96a4..c131d51f982159cb4307700dbdf7fae76bd7e0c2 100644 (file)
@@ -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 <stdint.h>
 #include <libgen.h>
-
 #include <allParam.h>
 
 #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, "<D> evtbuild.c, rfio_fnewfile(): trying to open remote file %s\n", rfioPath);
-               if (0 != rfio_fnewfile(fRemote, rfioPath)) {
-                       sprintf(msglog, "<E> %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, "<E> %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);
                }
        }