blob: 3372bf915547dd1ed71bd7cb40428eabfad65ed6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_M32R_FCNTL_H
2#define _ASM_M32R_FCNTL_H
3
4/* $Id$ */
5
6/* orig : i386 2.4.18 */
7
8/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
9 located on an ext2 file system */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#define O_CREAT 0100 /* not fcntl */
11#define O_EXCL 0200 /* not fcntl */
12#define O_NOCTTY 0400 /* not fcntl */
13#define O_TRUNC 01000 /* not fcntl */
14#define O_APPEND 02000
15#define O_NONBLOCK 04000
16#define O_NDELAY O_NONBLOCK
17#define O_SYNC 010000
18#define FASYNC 020000 /* fcntl, for BSD compatibility */
19#define O_DIRECT 040000 /* direct disk access hint */
20#define O_LARGEFILE 0100000
21#define O_DIRECTORY 0200000 /* must be a directory */
22#define O_NOFOLLOW 0400000 /* don't follow links */
23#define O_NOATIME 01000000
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define F_GETLK 5
26#define F_SETLK 6
27#define F_SETLKW 7
28
29#define F_SETOWN 8 /* for sockets. */
30#define F_GETOWN 9 /* for sockets. */
31#define F_SETSIG 10 /* for sockets. */
32#define F_GETSIG 11 /* for sockets. */
33
34#define F_GETLK64 12 /* using 'struct flock64' */
35#define F_SETLK64 13
36#define F_SETLKW64 14
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/* for posix fcntl() and lockf() */
39#define F_RDLCK 0
40#define F_WRLCK 1
41#define F_UNLCK 2
42
43/* for old implementation of bsd flock () */
44#define F_EXLCK 4 /* or 3 */
45#define F_SHLCK 8 /* or 4 */
46
47/* for leases */
48#define F_INPROGRESS 16
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050struct flock {
51 short l_type;
52 short l_whence;
53 off_t l_start;
54 off_t l_len;
55 pid_t l_pid;
56};
57
58struct flock64 {
59 short l_type;
60 short l_whence;
61 loff_t l_start;
62 loff_t l_len;
63 pid_t l_pid;
64};
65
Stephen Rothwell93172592005-09-06 15:17:57 -070066#include <asm-generic/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#endif /* _ASM_M32R_FCNTL_H */