1 
2 /* COPYING ******************************************************************
3 For copyright and licensing terms, see the file named COPYING.
4 // **************************************************************************
5 */
6 
7 #if !defined(INCLUDE_LOCKFILE_H)
8 #define INCLUDE_LOCKFILE_H
9 
10 /* Lock files ***************************************************************
11 // **************************************************************************
12 */
13 
14 extern
15 int
16 open_lockfile_exclusive_or_wait_at (
17 	int dir_fd,
18 	const char * name
19 ) ;
20 extern
21 int
22 open_lockfile_shared_or_wait_at (
23 	int dir_fd,
24 	const char * name
25 ) ;
26 
27 #endif
28