]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
Only operate on existing workers, somewhat sloppyly tested
authorhadaq <hadaq>
Mon, 16 Aug 2004 15:02:12 +0000 (15:02 +0000)
committerhadaq <hadaq>
Mon, 16 Aug 2004 15:02:12 +0000 (15:02 +0000)
hadaq/agent.c

index 67a1fa0d786150eb67c547585682fbe72f6f4173..62311aaed935b96764f8e2b1225edf184cdbdfb2 100644 (file)
@@ -1,4 +1,4 @@
-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/agent.c,v 6.14 2003-08-27 13:09:03 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/agent.c,v 6.15 2004-08-16 15:02:12 hadaq Exp $";
 
 #define _GNU_SOURCE
 #include <unistd.h>
@@ -71,11 +71,17 @@ int *rpcworker_start_1_svc(RpcWorker_startArgs * dummy, struct svc_req *x)
 char **rpcworker_status_1(int *id, CLIENT * cl)
 {
        static char *retVal;
+       char *worker;
 
        openlog("daq_agent", LOG_PID | LOG_PERROR, LOG_LOCAL0);
        setlogmask(LOG_UPTO(LOG_INFO));
 
-       retVal = Worker_status(getWorker(*id));
+       worker = getWorker(*id);
+       if (*worker != '\0') {
+               retVal = Worker_status(worker);
+       } else {
+               retVal = "{}";
+       }
 
        closelog();
 
@@ -90,11 +96,15 @@ char **rpcworker_status_1_svc(int *dummy, struct svc_req *x)
 int *rpcworker_stop_1(int *id, CLIENT * cl)
 {
        static int retVal;
+       char *worker;
 
        openlog("daq_agent", LOG_PID | LOG_PERROR, LOG_LOCAL0);
        setlogmask(LOG_UPTO(LOG_INFO));
 
-       Worker_stop(getWorker(*id), 15);
+       worker = getWorker(*id);
+       if (*worker != '\0') {
+               Worker_stop(worker, 15);
+       }
 
        closelog();