mirror of
https://github.com/adulau/aha.git
synced 2025-01-02 14:13:18 +00:00
1abf62afb6
This patch puts the most popular of each fcntl operation/flag into asm-generic/fcntl.h and cleans up the arch files. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
14 lines
209 B
C
14 lines
209 B
C
#ifndef _X86_64_FCNTL_H
|
|
#define _X86_64_FCNTL_H
|
|
|
|
struct flock {
|
|
short l_type;
|
|
short l_whence;
|
|
off_t l_start;
|
|
off_t l_len;
|
|
pid_t l_pid;
|
|
};
|
|
|
|
#include <asm-generic/fcntl.h>
|
|
|
|
#endif /* !_X86_64_FCNTL_H */
|