void zebraIndexLockMsg (const char *str);
void zebraIndexUnlock (void);
-void zebraIndexLock (BFiles bfs, int commitNow, const char *rval);
+int zebraIndexLock (BFiles bfs, int commitNow, const char *rval);
int zebraIndexWait (int commitPhase);
#define FNAME_MAIN_LOCK "zebraidx.LCK"
/*
* $Log: index.h,v $
- * Revision 1.67 1999-11-30 13:48:03 adam
+ * Revision 1.68 2000-02-24 11:00:07 adam
+ * Fixed bug: indexer would run forever when lock dir was non-existant.
+ *
+ * Revision 1.67 1999/11/30 13:48:03 adam
* Improved installation. Updated for inclusion of YAZ header files.
*
* Revision 1.66 1999/07/14 13:21:34 heikki
* Sebastian Hammer, Adam Dickmeiss
*
* $Log: lockidx.c,v $
- * Revision 1.17 1999-12-08 15:03:11 adam
+ * Revision 1.18 2000-02-24 11:00:07 adam
+ * Fixed bug: indexer would run forever when lock dir was non-existant.
+ *
+ * Revision 1.17 1999/12/08 15:03:11 adam
* Implemented bf_reset.
*
* Revision 1.16 1999/02/02 14:50:57 adam
logf (LOG_WARN|LOG_ERRNO, "unlink %s failed", path);
}
-void zebraIndexLock (BFiles bfs, int commitNow, const char *rval)
+int zebraIndexLock (BFiles bfs, int commitNow, const char *rval)
{
char path[1024];
char buf[256];
int r;
if (server_lock_main)
- return ;
+ return 0;
zebra_lock_prefix (common_resource, path);
strcat (path, FNAME_MAIN_LOCK);
server_lock_main = zebra_lock_create (path, 1);
if (!server_lock_main)
{
- if (errno == ENOENT)
- continue;
- logf (LOG_FATAL|LOG_ERRNO, "open %s", path);
- exit (1);
+ logf (LOG_FATAL, "couldn't obtain indexer lock");
+ exit (1);
}
if (zebra_lock_nb (server_lock_main) == -1)
{
break;
}
zebra_lock (server_lock_main);
+ return 0;
}