Changes between Version 88 and Version 89 of library_stdio
- Timestamp:
- Jun 16, 2015, 7:16:22 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdio
v88 v89 173 173 174 174 === 1) int '''giet_fat_open'''( char* pathname, unsigned int flags ) === 175 This function allocates a file descriptor to the calling task, for the file identified by its absolute pathname from root.175 This function allocates a file descriptor to the calling task, for the file identified by its absolute '''pathname''' (from root). 176 176 If several tasks try to open the same file, each task obtains a private file descriptor. 177 177 The semantic is similar to the UNIX open() function, but the UNIX oflags and the UNIX access rights are not supported. 178 The two following flags can be ''ored'' in the '''flags''' argument:178 The two following flags are supported, and can be ''ored'' in the '''flags''' argument: 179 179 * O_RDONLY (0x01) : file accessed as read-only. Default is read/write. 180 180 * O_CREATE (0x20) : file created if it does not exist on disk. Default is no creation.