forked from strace/strace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flock.h
30 lines (25 loc) · 794 Bytes
/
flock.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* Copyright (c) 2015 Dmitry V. Levin <[email protected]>
* Copyright (c) 2015-2018 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#ifndef STRACE_FLOCK_H
# define STRACE_FLOCK_H
# include <linux/fcntl.h>
# if defined HAVE_STRUCT_FLOCK
typedef struct flock struct_kernel_flock;
# elif defined HAVE_STRUCT___KERNEL_FLOCK
typedef struct __kernel_flock struct_kernel_flock;
# else
# error struct flock definition not found in <linux/fcntl.h>
# endif
# if defined HAVE_STRUCT_FLOCK64
typedef struct flock64 struct_kernel_flock64;
# elif defined HAVE_STRUCT___KERNEL_FLOCK64
typedef struct __kernel_flock64 struct_kernel_flock64;
# else
# error struct flock64 definition not found in <linux/fcntl.h>
# endif
#endif /* !STRACE_FLOCK_H */