Changes between Version 146 and Version 147 of library_stdio


Ignore:
Timestamp:
Feb 25, 2016, 6:06:50 PM (8 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • library_stdio

    v146 v147  
    270270
    271271=== 4) int '''giet_fat_read'''( unsigned int fd_id , void* buffer , unsigned int count ) ===
    272 This function has the same semantic as the UNIX read() function. It transfers <count> bytes from the kernel File_Cache associated to the file identified by <fd_id>, to the user <buffer>, starting from the current file offset. The offset value is incremented by count.
     272This function has the same semantic as the UNIX read() function. It transfers up to <count> bytes from the kernel File_Cache associated to the file identified by <fd_id>, to the user <buffer>, starting from the current file offset. The number of bytes actually transferred can be smaller than the <count> argument if an EOF is encountered. The offset value is incremented by the number to bytes actually transferred.
    273273In case of miss in the File_Cache, it loads all involved clusters into cache.
    274274