]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
pipe size fast hack
authorhadaq <hadaq>
Tue, 30 Sep 2003 14:53:39 +0000 (14:53 +0000)
committerhadaq <hadaq>
Tue, 30 Sep 2003 14:53:39 +0000 (14:53 +0000)
-- Benjamin Sailer

hadaq/evtbuild.c

index 1594e7bf566f40392a844285c3312236e3108afc..d2d3263535fd33518ca0936ceb11a30484e305c4 100644 (file)
@@ -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);
 }