Changes between Version 146 and Version 147 of library_stdio
- Timestamp:
- Feb 25, 2016, 6:06:50 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdio
v146 v147 270 270 271 271 === 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.272 This 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. 273 273 In case of miss in the File_Cache, it loads all involved clusters into cache. 274 274