Changes between Version 88 and Version 89 of library_stdio


Ignore:
Timestamp:
Jun 16, 2015, 7:16:22 PM (9 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdio

    v88 v89  
    173173
    174174=== 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.
     175This function allocates a file descriptor to the calling task, for the file identified by its absolute '''pathname''' (from root).
    176176If several tasks try to open the same file, each task obtains a private file descriptor.
    177177The 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:
     178The two following flags are supported, and can be ''ored'' in the '''flags''' argument:
    179179 * O_RDONLY (0x01) : file accessed as read-only. Default is read/write.
    180180 * O_CREATE  (0x20) : file created if it does not exist on disk. Default is no creation.