]> git.sur5r.net Git - openldap/blobdiff - include/lutil_lockf.h
Silence warning in prev commit
[openldap] / include / lutil_lockf.h
index 9a791d8c3abcc53e2ccb7612a7ce0becfc83698a..e0330261e58e43fd0934e0abe5c4433f2473dc37 100644 (file)
@@ -1,32 +1,31 @@
+/* $OpenLDAP$ */
 /*
- * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
+ * Copyright 1998-2003 The OpenLDAP Foundation, Redwood City, California, USA
  * All rights reserved.
  *
- * Redistribution and use in source and binary forms are permitted only
- * as authorized by the OpenLDAP Public License.  A copy of this
- * license is available at http://www.OpenLDAP.org/license.html or
- * in file LICENSE in the top-level directory of the distribution.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.  A copy of this license is available at
+ * http://www.OpenLDAP.org/license.html or in file LICENSE in the
+ * top-level directory of the distribution.
+ */
+
+/* File locking methods
+ *
+ * lutil_lockf() will block until an exclusive lock is acquired.
  */
-/* File locking methods */
 
 #ifndef _LUTIL_LOCKF_H_
 #define _LUTIL_LOCKF_H_
 
-#include <stdio.h>
-#include <ldap_cdefs.h>
-#include <ac/bytes.h>
-
-#ifdef HAVE_FCNTL_H
-#include <fcntl.h>
-#endif
-
-#ifdef NEED_FCNTL_LOCKING
 LDAP_BEGIN_DECL
 
-LDAP_F int lutil_ldap_lockf LDAP_P(( FILE *fs ));
-LDAP_F int lutil_ldap_unlockf LDAP_P(( FILE *fs ));
+LDAP_LUTIL_F( int )
+lutil_lockf LDAP_P(( int fd ));
+
+LDAP_LUTIL_F( int )
+lutil_unlockf LDAP_P(( int fd ));
 
 LDAP_END_DECL
-#endif /* NEED_FCNTL_LOCKING */
 
 #endif /* _LUTIL_LOCKF_H_ */