fcntl.h 300 B

123456789101112131415161718
  1. #ifndef _CRIS_FCNTL_H
  2. #define _CRIS_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