-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>
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();
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();