modify micro definition of file Operation flags
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1383 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
cfa485f20a
commit
ea009132a2
|
@ -174,15 +174,15 @@
|
|||
#define DFS_STATUS_ENOTEMPTY 39 /* Directory not empty */
|
||||
|
||||
/* Operation flags */
|
||||
#define DFS_O_RDONLY 0000000
|
||||
#define DFS_O_WRONLY 0000001
|
||||
#define DFS_O_RDWR 0000002
|
||||
#define DFS_O_ACCMODE 0000003
|
||||
#define DFS_O_CREAT 0000100
|
||||
#define DFS_O_EXCL 0000200
|
||||
#define DFS_O_TRUNC 0001000
|
||||
#define DFS_O_APPEND 0002000
|
||||
#define DFS_O_DIRECTORY 0200000
|
||||
#define DFS_O_RDONLY 0x0000000
|
||||
#define DFS_O_WRONLY 0x0000001
|
||||
#define DFS_O_RDWR 0x0000002
|
||||
#define DFS_O_ACCMODE 0x0000003
|
||||
#define DFS_O_CREAT 0x0000100
|
||||
#define DFS_O_EXCL 0x0000200
|
||||
#define DFS_O_TRUNC 0x0001000
|
||||
#define DFS_O_APPEND 0x0002000
|
||||
#define DFS_O_DIRECTORY 0x0200000
|
||||
|
||||
/* File flags */
|
||||
#define DFS_F_OPEN 0x01000000
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
#define __RTT_FCNTL_H__
|
||||
|
||||
/* Operation flags */
|
||||
#define O_RDONLY 0000000
|
||||
#define O_WRONLY 0000001
|
||||
#define O_RDWR 0000002
|
||||
#define O_ACCMODE 0000003
|
||||
#define O_CREAT 0000100
|
||||
#define O_EXCL 0000200
|
||||
#define O_TRUNC 0001000
|
||||
#define O_APPEND 0002000
|
||||
#define O_DIRECTORY 0200000
|
||||
#define O_RDONLY 0x0000000
|
||||
#define O_WRONLY 0x0000001
|
||||
#define O_RDWR 0x0000002
|
||||
#define O_ACCMODE 0x0000003
|
||||
#define O_CREAT 0x0000100
|
||||
#define O_EXCL 0x0000200
|
||||
#define O_TRUNC 0x0001000
|
||||
#define O_APPEND 0x0002000
|
||||
#define O_DIRECTORY 0x0200000
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue