Linux Kernel
3.7.1
|
#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)) |
#define force_o_largefile | ( | ) | (BITS_PER_LONG != 32) |
#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)) |