]> git.sur5r.net Git - openldap/blobdiff - include/lutil_lockf.h
Add LDAP_TAG_LDAPCRED macro.
[openldap] / include / lutil_lockf.h
index 9a791d8c3abcc53e2ccb7612a7ce0becfc83698a..86fc9cebd6956c8811ba63b8bab1d8fe177a155a 100644 (file)
@@ -7,26 +7,23 @@
  * 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 */
+
+/* File locking methods
+ *
+ * lutil_lockf() will block until an exclusive lock is acquired.
+ */
 
 #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_F( int )
+lutil_lockf LDAP_P(( int fd ));
+
+LDAP_F( int )
+lutil_unlockf LDAP_P(( int fd ));
 
 LDAP_END_DECL
-#endif /* NEED_FCNTL_LOCKING */
 
 #endif /* _LUTIL_LOCKF_H_ */