From 561aa34c5f49ccace0673aa6c3a47bfafbd2c157 Mon Sep 17 00:00:00 2001 From: hadaq Date: Tue, 30 Sep 2003 14:53:39 +0000 Subject: [PATCH] pipe size fast hack -- Benjamin Sailer --- hadaq/evtbuild.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hadaq/evtbuild.c b/hadaq/evtbuild.c index 1594e7b..d2d3263 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.67 2003-09-29 09:10:16 hadaq Exp $"; +static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/evtbuild.c,v 6.68 2003-09-30 14:53:39 hadaq Exp $"; #define _POSIX_C_SOURCE 199309L @@ -313,6 +313,7 @@ static void statsDump(TheArgs *theArgs, TheStats *my, int interval) } +#define NJUNK 128 static void storeInfoStart(const char *n, time_t t, TheArgs *my) { Param pS, *p = &pS; @@ -336,6 +337,12 @@ static void storeInfoStart(const char *n, time_t t, TheArgs *my) Param_storeInt(p, n, "stndln", my->isStandalone); Param_storeInt(p, n, "qsize", my->queueSize); Param_storeString(p, n, "verb", my->verbosity); + /* This storing junk is for having the run start in + * oracle definately -- BS + */ + for (i = 0; i < NJUNK; i++) { + Param_storeString(p, n, "junk", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); + } desParam(p); } -- 2.43.0