fcntl.h 311 B

12345678910111213141516171819
  1. #ifndef __ASM_SH_FCNTL_H
  2. #define __ASM_SH_FCNTL_H
  3. #define F_GETLK64 12 /* using 'struct flock64' */
  4. #define F_SETLK64 13
  5. #define F_SETLKW64 14
  6. struct flock64 {
  7. short l_type;
  8. short l_whence;
  9. loff_t l_start;
  10. loff_t l_len;
  11. pid_t l_pid;
  12. };
  13. #include <asm-generic/fcntl.h>
  14. #endif /* __ASM_SH_FCNTL_H */