]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-m32r/fcntl.h
[PATCH] Clean up the fcntl operations
[linux-2.6-omap-h63xx.git] / include / asm-m32r / fcntl.h
1 #ifndef _ASM_M32R_FCNTL_H
2 #define _ASM_M32R_FCNTL_H
3
4 /* $Id$ */
5
6 /* orig : i386 2.4.18 */
7
8 #define F_GETLK64       12      /*  using 'struct flock64' */
9 #define F_SETLK64       13
10 #define F_SETLKW64      14
11
12 struct flock {
13         short l_type;
14         short l_whence;
15         off_t l_start;
16         off_t l_len;
17         pid_t l_pid;
18 };
19
20 struct flock64 {
21         short  l_type;
22         short  l_whence;
23         loff_t l_start;
24         loff_t l_len;
25         pid_t  l_pid;
26 };
27
28 #include <asm-generic/fcntl.h>
29
30 #endif  /* _ASM_M32R_FCNTL_H */