return &retVal;
 }
 
+int * rpcworker_start_1_svc(RpcWorker_startArgs *dummy, struct svc_req *x)
+{
+       return rpcworker_start_1(dummy, NULL);
+}
+
 char **rpcworker_status_1(int *id, CLIENT * cl)
 {
        static char *retVal;
        return &retVal;
 }
 
+char ** rpcworker_status_1_svc(int *dummy, struct svc_req *x)
+{
+       return rpcworker_status_1(dummy, NULL);
+}
+
 int *rpcworker_stop_1(int *id, CLIENT * cl)
 {
        static int retVal;
 
        return &retVal;
 }
+
+int * rpcworker_stop_1_svc(int *dummy, struct svc_req *x)
+{
+       return rpcworker_stop_1(dummy, NULL);
+}