summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/defaults/default_mmap.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cpukit/libfs/src/defaults: Change license to BSD-2Joel Sherrill2022-03-221-3/+22
| | | | Updates #3053.
* Canonicalize config.h includeSebastian Huber2020-04-161-2/+2
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* posix/mmap: Add support for file handler and MAP_ANONKevin Kirspel2017-07-141-0/+40
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