]> andersk Git - moira.git/blobdiff - dcm/utils.c
added the new imembers index
[moira.git] / dcm / utils.c
index d8734901ac24b726466a7c5b38d32e870e986587..db51555b7b79cd4136525f9e2baed15e6e18d583 100644 (file)
@@ -18,13 +18,13 @@ static char *rcsid_utils_c = "$Header$";
 #include <mit-copyright.h>
 #include <stdio.h>
 #include <strings.h>
+#include <errno.h>
 #include <varargs.h>
 #include <sys/types.h>
 #include <sys/time.h>
 #include <sys/file.h>
-#include <zephyr/zephyr.h>
-#include <sms.h>
-#include <sms_app.h>
+#include <moira.h>
+#include <moira_site.h>
 #include "dcm.h"
 
 
@@ -113,3 +113,21 @@ int exclusive;
     return fd;
 }
 
+
+int mr_query_with_retry(name, argc, argv, proc, hint)
+char *name;
+int argc;
+char **argv;
+int (*proc)();
+char *hint;
+{
+    int status, tries;
+
+    for (tries = 0; tries < DEADLOCK_TRIES; tries++) {
+       status = mr_query(name, argc, argv, proc, hint);
+       if (status != MR_DEADLOCK)
+         return(status);
+       sleep(DEADLOCK_WAIT);
+    }
+    return(status);
+}
This page took 0.141901 seconds and 4 git commands to generate.