]> err.no Git - linux-2.6/blob - include/asm-frv/fcntl.h
[PATCH] Clean up struct flock definitions
[linux-2.6] / include / asm-frv / fcntl.h
1 #ifndef _ASM_FCNTL_H
2 #define _ASM_FCNTL_H
3
4 #define F_GETLK64       12      /*  using 'struct flock64' */
5 #define F_SETLK64       13
6 #define F_SETLKW64      14
7
8 struct flock64 {
9         short  l_type;
10         short  l_whence;
11         loff_t l_start;
12         loff_t l_len;
13         pid_t  l_pid;
14 };
15
16 #include <asm-generic/fcntl.h>
17
18 #endif /* _ASM_FCNTL_H */
19