summaryrefslogtreecommitdiff
path: root/cpukit/libfs/src/imfs/imfs_dir_default.c (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2019-02-05fs: Add struct dirent::d_type supportSebastian Huber
2017-12-13IMFS: Include <rtems/imfs.h>Sebastian Huber
Prepare for header file move to common include directory. Update #3254.
2017-07-14posix/mmap: Add support for file handler and MAP_ANONKevin Kirspel
Added a mmap file handler to struct _rtems_filesystem_file_handlers_r. Updated each file handler object to support the default mmap handler. Updated mmap() to call the mmap handler for MAP_SHARED. Added a mmap file handler for shm Added support for MAP_ANON in mmap(). Updates #2859
2015-03-17IMFS: NUL-terminate name returned by readdir()Sebastian Huber
2015-03-16IMFS: don't strlen() an unterminated string in IMFS_dir_read().Jamie Iles
a43a3466 (IMFS: Implement variable length node names) introduced a changed to IMFS_jnode_t from being a null terminated string to a separate unterminated string and length. IMFS_dir_read() was still performing a strlen() on this unterminated string though and when doing an 'ls' in the fileio example I saw that some filenames had garbage suffixes.
2015-02-14IMFS: Add CONFIGURE_IMFS_DISABLE_READDIRSebastian Huber