Changeset 459 for trunk/kernel/syscalls/shared_include
- Timestamp:
- Aug 13, 2018, 1:43:20 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/shared_include/shared_fcntl.h
r445 r459 1 1 /* 2 * upashared_fcntl.h - Shared structures used by file related syscalls.2 * shared_fcntl.h - Shared structures used by file related syscalls. 3 3 * 4 4 * Author Alain Greiner (2016,2017,2018) … … 33 33 O_RDONLY = 0x0010000, /*! open file in read-only mode */ 34 34 O_WRONLY = 0x0020000, /*! open file in write-only mode */ 35 O_RDWR = 0x00 30000, /*! open file in read/write mode */35 O_RDWR = 0x0000000, /*! open file in read/write mode */ 36 36 O_NONBLOCK = 0x0040000, /*! do not block if data non available */ 37 37 O_APPEND = 0x0080000, /*! append on each write */
Note: See TracChangeset
for help on using the changeset viewer.