Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros
fcntl.h File Reference
#include <uapi/linux/fcntl.h>

Go to the source code of this file.

Macros

#define force_o_largefile()   (BITS_PER_LONG != 32)
 
#define IS_GETLK32(cmd)   (0)
 
#define IS_SETLK32(cmd)   (0)
 
#define IS_SETLKW32(cmd)   (0)
 
#define IS_GETLK64(cmd)   ((cmd) == F_GETLK)
 
#define IS_SETLK64(cmd)   ((cmd) == F_SETLK)
 
#define IS_SETLKW64(cmd)   ((cmd) == F_SETLKW)
 
#define IS_GETLK(cmd)   (IS_GETLK32(cmd) || IS_GETLK64(cmd))
 
#define IS_SETLK(cmd)   (IS_SETLK32(cmd) || IS_SETLK64(cmd))
 
#define IS_SETLKW(cmd)   (IS_SETLKW32(cmd) || IS_SETLKW64(cmd))
 

Macro Definition Documentation

#define force_o_largefile ( )    (BITS_PER_LONG != 32)

Definition at line 8 of file fcntl.h.

#define IS_GETLK (   cmd)    (IS_GETLK32(cmd) || IS_GETLK64(cmd))

Definition at line 27 of file fcntl.h.

#define IS_GETLK32 (   cmd)    (0)

Definition at line 19 of file fcntl.h.

#define IS_GETLK64 (   cmd)    ((cmd) == F_GETLK)

Definition at line 22 of file fcntl.h.

#define IS_SETLK (   cmd)    (IS_SETLK32(cmd) || IS_SETLK64(cmd))

Definition at line 28 of file fcntl.h.

#define IS_SETLK32 (   cmd)    (0)

Definition at line 20 of file fcntl.h.

#define IS_SETLK64 (   cmd)    ((cmd) == F_SETLK)

Definition at line 23 of file fcntl.h.

#define IS_SETLKW (   cmd)    (IS_SETLKW32(cmd) || IS_SETLKW64(cmd))

Definition at line 29 of file fcntl.h.

#define IS_SETLKW32 (   cmd)    (0)

Definition at line 21 of file fcntl.h.

#define IS_SETLKW64 (   cmd)    ((cmd) == F_SETLKW)

Definition at line 24 of file fcntl.h.