summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/defaults/default_lseek_file.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-03-22cpukit/libfs/src/defaults: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2022-03-10cpukit/: Scripted embedded brains header file clean upJoel Sherrill1-6/+0
Updates #4625.
2020-04-28doxygen: Switch @brief and @ingroupSebastian Huber1-1/+2
This order change fixes the Latex documentation build via Doxygen.
2020-04-16Canonicalize config.h includeSebastian Huber1-2/+2
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-08-23Filesystem: Avoid usage of uninitialized variableSebastian Huber1-2/+2
This is a cosmetic fix. There was no bug.
2012-12-28libfs: Doxygen Enhancement Task #4Ayush Awasthi1-0/+7
2012-05-11Filesystem: PR1398: Fix lseek() mechanicSebastian Huber1-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().