/*
* locks.h:
* Various means of locking files.
*
* Copyright (c) 2001 Chris Lightfoot. All rights reserved.
*
* $Id: locks.h,v 1.2 2001/04/23 23:45:40 chris Exp $
*
*/
#ifndef __LOCKS_H_ /* include guard */
#define __LOCKS_H_
#ifdef HAVE_CONFIG_H
#include "configuration.h"
#endif /* HAVE_CONFIG.H */
#ifdef MBOX_BSD
#if !defined(WITH_FCNTL_LOCKING) && !defined(WITH_FLOCK_LOCKING) && !defined(WITH_DOTFILE_LOCKING)
# warning "No locking scheme defined; using dotfiles and flock(2)."
# define WITH_FCNTL_LOCKING
# define WITH_DOTFILE_LOCKING
#endif
#ifdef WITH_FCNTL_LOCKING
int fcntl_lock(int);
int fcntl_unlock(int);
#endif
#if defined(WITH_FLOCK_LOCKING) || (defined(WITH_CCLIENT_LOCKING) && !defined(CCLIENT_USES_FCNTL))
int flock_lock(int);
int flock_unlock(int);
#endif
#ifdef WITH_DOTFILE_LOCKING
int dotfile_lock(const char*);
int dotfile_unlock(const char *);
#endif
#ifdef WITH_CCLIENT_LOCKING
int cclient_steal_lock(int);
#endif
#endif /* MBOX_BSD */
#endif /* __LOCKS_H_ */
syntax highlighted by Code2HTML, v. 0.9.1