-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
#include <stdint.h>
#include <libgen.h>
-
#include <allParam.h>
#include "grmblfx.h"
#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);
}
}