O_RDWR, O_CREAT等open函数标志位在哪里定义?

查了下O_RDWR, O_CREAT等定义,终于找到了。

我的系统是Fedora12, 其定义在文件:/usr/include/asm-generic/fcntl.h,部分定义如下:

[cpp]  view plain copy
  1. #include <linux/types.h>  
  2.   
  3. /* open/fcntl - O_SYNC is only implemented on blocks devices and on files 
  4.    located on an ext2 file system */  
  5. #define O_ACCMODE   00000003  
  6. #define O_RDONLY    00000000  
  7. #define O_WRONLY    00000001  
  8. #define O_RDWR      00000002  
  9. #ifndef O_CREAT  
  10. #define O_CREAT     00000100    /* not fcntl */  
  11. #endif  
  12. #ifndef O_EXCL  
  13. #define O_EXCL      00000200    /* not fcntl */  
  14. #endif  
  15. #ifndef O_NOCTTY  
  16. #define O_NOCTTY    00000400    /* not fcntl */  
  17. #endif  
  18. #ifndef O_TRUNC  
  19. #define O_TRUNC     00001000    /* not fcntl */  
  20. #endif  
  21. #ifndef O_APPEND  
  22. #define O_APPEND    00002000  
  23. #endif  
  24. #ifndef O_NONBLOCK  
  25. #define O_NONBLOCK  00004000  
  26. #endif  
  27. #ifndef O_SYNC  
  28. #define O_SYNC      00010000  
  29. #endif  
  30. #ifndef FASYNC  
  31. #define FASYNC      00020000    /* fcntl, for BSD compatibility */  
  32. #endif  
  33. #ifndef O_DIRECT  
  34. #define O_DIRECT    00040000    /* direct disk access hint */  
  35. #endif  
  36. #ifndef O_LARGEFILE  
  37. #define O_LARGEFILE 00100000  
  38. #endif  
  39. #ifndef O_DIRECTORY  
  40. #define O_DIRECTORY 00200000    /* must be a directory */  
  41. #endif  
  42. #ifndef O_NOFOLLOW  
  43. #define O_NOFOLLOW  00400000    /* don't follow links */  
  44. #endif  
  45. #ifndef O_NOATIME  
  46. #define O_NOATIME   01000000  
  47. #endif  
  48. #ifndef O_CLOEXEC  
  49. #define O_CLOEXEC   02000000    /* set close_on_exec */  
  50. #endif  
  51. #ifndef O_NDELAY  
  52. #define O_NDELAY    O_NONBLOCK  
  53. #endif  


注意:

#define O_RDONLY    00000000
#define O_WRONLY    00000001
#define O_RDWR        00000002

所以:O_RDONLY | O_WRONLY = 1 ,并不等于O_RDWR。


  • 3
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值