summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/defaults/default_lseek_file.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* Filesystem: Avoid usage of uninitialized variableSebastian Huber2013-08-231-2/+2
| | | | This is a cosmetic fix. There was no bug.
* libfs: Doxygen Enhancement Task #4Ayush Awasthi2012-12-281-0/+7
|
* Filesystem: PR1398: Fix lseek() mechanicSebastian Huber2012-05-111-0/+70
According to POSIX the lseek() function shall not, by itself, extend the size of a file. Remove the size field of rtems_libio_t. A file has only one size but may have multiple open file descriptors. Thus a file size field in the file descriptor may lead to inconsistencies. New default handlers rtems_filesystem_default_lseek_file() and rtems_filesystem_default_lseek_directory().