Changes between Version 149 and Version 150 of library_stdio


Ignore:
Timestamp:
Mar 17, 2016, 12:31:58 PM (9 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdio

    v149 v150  
    234234If several threads try to open the same file, each thread obtains a private file descriptor.
    235235The semantic is similar to the UNIX open() function, but the UNIX access rights are not supported.
    236 The two following flags are supported, and can be ''ored'' to define the <flags> argument:
     236The following flags are supported, and can be ''ored'' to define the <flags> argument:
    237237 * O_RDONLY : The file can only be accessed as read-only. Default is read/write.
    238  * O_CREATE  (0x20) : file created if it does not exist on disk. Default is no creation.
     238 * O_CREATE : The file is created if it does not exist on disk. Default is no creation.
    239239 * O_TRUNC : All clusters allocated to the file are released, and the file size is reset to 0. 
    240  * O_APPEND : The offset in the file descriptor is initialized to the file size.
     240 * O_APPEND : The offset in the file descriptor is initialized to the file size. Default offset value is 0.
    241241If one of the directories specified in the paththnamr does not exist, an error is returned.
    242242