summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/umon (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/umon: Fix format warningsSebastian Huber2017-03-081-3/+3
|
* various .h files: Add missing C++ extern wrappersMartin Galvan2015-09-031-0/+4
| | | | Updates #2405.
* Filesystem: Delete unused fsmountme_h handlerSebastian Huber2015-02-091-1/+0
|
* Filesystem: Delete node type operationSebastian Huber2015-01-221-7/+8
| | | | Use the fstat handler instead.
* libbsp/shared/umon: Fix warningsJoel Sherrill2014-10-133-3/+39
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-214-4/+4
|
* shared vmeUniverse: Improve DoxygenSzkocsovszki Zsolt2014-01-084-12/+56
|
* Filesystem: Use default kqfilter and poll handlerSebastian Huber2013-12-201-0/+2
|
* Filesystem: Add readv/writev handlersSebastian Huber2013-12-201-1/+3
| | | | | | | | | The readv() and writev() support was implemented in terms of multiple calls to the read and write handlers. This imposes a problem on device files which use an IO vector as single request entity. For example a low-level network device (e.g. BPF(4)) may use an IO vector to create one frame from multiple protocol layers each with its own IO vector entry.
* libchip/serial: Add const qualifierSebastian Huber2013-02-111-1/+1
|
* Filesystem: Move operations to mount table entrySebastian Huber2012-05-151-1/+1
| | | | | | | | | | | The scope of the file system operations is the file system instance. The scope of the file system node handlers is the file location. The benefit of moving the operations to the mount table entry is a size reduction of the file location (rtems_filesystem_location_info_t). The code size is slightly increased due to additional load instructions. Restructure rtems_filesystem_mount_table_entry_t to improve cache efficiency.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-119-19/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* Filesystem: Rename definesSebastian Huber2012-03-131-2/+2
| | | | | | | | | | | | | | | o Removed RTEMS_LIBIO_PERMS_SEARCH. o Renamed RTEMS_LIBIO_PERMS_READ in RTEMS_FS_PERMS_READ. o Renamed RTEMS_LIBIO_PERMS_WRITE in RTEMS_FS_PERMS_WRITE. o Renamed RTEMS_LIBIO_PERMS_EXEC in RTEMS_FS_PERMS_EXEC. o Renamed RTEMS_LIBIO_FOLLOW_HARD_LINK in RTEMS_FS_FOLLOW_HARD_LINK. o Renamed RTEMS_LIBIO_FOLLOW_SYM_LINK in RTEMS_FS_FOLLOW_SYM_LINK. o Renamed RTEMS_LIBIO_MAKE in RTEMS_FS_MAKE. o Renamed RTEMS_LIBIO_EXCLUSIVE in RTEMS_FS_EXCLUSIVE. o Renamed RTEMS_LIBIO_ACCEPT_RESIDUAL_DELIMITERS in RTEMS_FS_ACCEPT_RESIDUAL_DELIMITERS. o Renamed RTEMS_LIBIO_REJECT_TERMINAL_DOT in RTEMS_FS_REJECT_TERMINAL_DOT.
* Filesystem: New defaults fsync_h and fdatasync_hSebastian Huber2012-03-131-2/+2
| | | | | | | New defaults rtems_filesystem_default_fsync_or_fdatasync() and rtems_filesystem_default_fsync_or_fdatasync_success() for fsync_h and fdatasync_h. The rtems_filesystem_default_fsync_or_fdatasync() sets now errno to EINVAL according to POSIX.
* Filesystem: Reference counting for locationsSebastian Huber2012-03-131-198/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o A new data structure rtems_filesystem_global_location_t was introduced to be used for o the mount point location in the mount table entry, o the file system root location in the mount table entry, o the root directory location in the user environment, and o the current directory location in the user environment. During the path evaluation global start locations are obtained to ensure that the current file system instance will be not unmounted in the meantime. o The user environment uses now reference counting and is protected from concurrent access. o The path evaluation process was completely rewritten and simplified. The IMFS, RFS, NFS, and DOSFS use now a generic path evaluation method. Recursive calls in the path evaluation have been replaced with iteration to avoid stack overflows. Only the evaluation of symbolic links is recursive. No dynamic memory allocations and intermediate buffers are used in the high level path evaluation. No global locks are held during the file system instance specific path evaluation process. o Recursive symbolic link evaluation is now limited by RTEMS_FILESYSTEM_SYMLOOP_MAX. Applications can retrieve this value via sysconf(). o The device file system (devFS) uses now no global variables and allocation from the workspace. Node names are allocated from the heap. o The upper layer lseek() performs now some parameter checks. o The upper layer ftruncate() performs now some parameter checks. o unmask() is now restricted to the RWX flags and protected from concurrent access. o The fchmod_h and rmnod_h file system node handlers are now a file system operation. o The unlink_h operation has been removed. All nodes are now destroyed with the rmnod_h operation. o New lock_h, unlock_h, clonenod_h, and are_nodes_equal_h file system operations. o The path evaluation and file system operations are now protected by per file system instance lock and unlock operations. o Fix and test file descriptor duplicate in fcntl(). o New test fstests/fsnofs01.
* PR 2017/bsps - Update due to API changesWendell Silva2012-02-111-1/+0
|
* 2011-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-12-072-2/+3
| | | | | * umon/tfsDriver.c: Include <rtems/umon.h> (Missing prototype). * umon/monlib.c: Make DisableMonLock, EnableMonLock static.
* 2011-11-06 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-11-061-4/+4
| | | | | PR 1945/cpukit * umon/tfsDriver.c: Replace rtems_off64_t with off_t.
* Remove white spaces.Ralf Corsepius2011-10-192-2/+2
|
* Typo.Sebastian Huber2010-07-271-1/+1
|
* 2010-07-27 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-07-271-7/+7
| | | | * umon/tfsDriver.c: Update for LibIO API changes.
* 2010-06-30 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-06-301-3/+2
| | | | * umon/tfsDriver.c: Remove extra brace.
* 2010-06-30 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2010-06-301-1/+1
| | | | | * umon/tfsDriver.c: Corrected filesystem mknod entry to call the default handler.
* 2010-06-29 Jennifer.Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2010-06-291-30/+33
| | | | | * umon/tfsDriver.c: Changed NULL methods in filesystem tables to be default methods.
* 2010-05-31 Chris Johns <chrisj@rtems.org>Chris Johns2010-05-311-11/+13
| | | | * shared/umon/tfsDriver.c: Updated to the new mount API.
* 2010-05-28 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-05-281-1/+1
| | | | | * umon/tfsDriver.c: Use size_t instead of int for pathnamelen.
* 2010-04-14 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-04-141-4/+4
| | | | | * shared/umon/umoncons.c: Reflect changes to rtems_termios_callbacks->write.
* unify irq data types and code, merge s3c2400/s3c2410 supportThomas Doerfler2010-04-091-2/+2
|
* 2009-12-04 Fernando Nicodemos <fgnicodemos@terra.com.br>Joel Sherrill2009-12-042-16/+37
| | | | * umon/README, umon/tfs.h: Missing parts of previous commit.
* 2009-11-30 Fernando Nicodemos <fgnicodemos@terra.com.br>Joel Sherrill2009-11-307-89/+143
| | | | | | * umon/cli.h, umon/monlib.c, umon/monlib.h, umon/tfs.h, umon/tfsDriver.c, umon/umon.h, umon/umonrtemsglue.c: Update to match development version.
* Whitespace removal.Ralf Corsepius2009-11-304-28/+28
|
* 2009-11-03 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-031-0/+1
| | | | | * shared/umon/tfsDriver.c (rtems_tfs_eval_path): Add missing parameter.
* 2009-06-18 Fernando Nicodemos <fgnicodemos@terra.com.br>Joel Sherrill2009-06-182-1/+134
| | | | | | | * umon/umonrtemsglue.c: Add console device that uses MicroMonitor to do actual input and output. This driver should work on any board that uses MicroMonitor. * umon/umoncons.c: New file.
* 2009-06-15 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-06-151-0/+7
| | | | | * umon/umonrtemsglue.c: Add flag to ensure that it umon connection is initialized twice, it is safe.
* 2009-06-15 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-06-152-24/+58
| | | | | | * umon/monlib.h: Add umon.h to be installed as <rtems/umon.h> so umon .h files are modified as little as possible. * umon/umon.h: New file.
* 2009-06-12 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-06-127-0/+2499
* umon/README, umon/cli.h, umon/monlib.c, umon/monlib.h, umon/tfs.h, umon/tfsDriver.c, umon/umonrtemsglue.c: New files.