summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed warnings.Joel Sherrill1999-12-131-1/+1
|
* Warning removal patch from Philip A. Prindeville <philipp@zembu.com>.Joel Sherrill1999-12-131-1/+1
|
* Added RTEMS_IO_ERROR.Joel Sherrill1999-12-131-0/+1
|
* Removed duplicate definition of rtems_filesystem_umask.Joel Sherrill1999-11-301-6/+0
|
* Corrected so they would compile with POSIX disabled.Joel Sherrill1999-11-302-2/+3
|
* Fixed spacing.Joel Sherrill1999-11-291-1/+1
|
* Patch rtems-rc-19991117-9.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-11-222-126/+127
| | | | | to convert the libc directory to automake and "dozens of small fixes for Makefile.ins/configure.ins below c/src/lib."
* Updated copyright notice.Joel Sherrill1999-11-17104-208/+104
|
* Added TERMINAL_IDENTIFICATION pieces.Joel Sherrill1999-11-161-3/+4
|
* Fixed bug.Jennifer Averett1999-11-161-3/+3
|
* Added handler for fsync. For the memfile it is the same as the data sync.Jennifer Averett1999-11-161-1/+1
|
* Works now.Joel Sherrill1999-11-161-19/+12
| | | | | Removed times() since the version in the C Library support code is fine.
* New file.Joel Sherrill1999-11-161-0/+113
|
* Added.Joel Sherrill1999-11-166-3/+209
|
* Source and destination arguments to strncpy were swapped. This mistakeJoel Sherrill1999-11-161-1/+1
| | | | was made in the conversion of bcopy() to strncpy().
* Added imfs_unixstub.c to satisfy linker problems on UNIX port.Joel Sherrill1999-11-092-1/+73
|
* Correctly set and called handlers table for the link.Jennifer Averett1999-11-051-1/+3
|
* Fixed commentJennifer Averett1999-11-051-1/+1
|
* Moved imfs set handlers prototype to the imfs.h file.Jennifer Averett1999-11-052-6/+4
|
* New file.Joel Sherrill1999-11-051-0/+38
|
* Unmount was failing as a side-effect of splitting the rmnod handlerJoel Sherrill1999-11-058-65/+105
| | | | and not handling every case properly.
* Following comments from Eric Norum <eric@cls.usask.ca>, a fairlyJoel Sherrill1999-11-054-287/+262
| | | | | | | substantial upgrade of newlibc.c occurred. Now the user extension data area is used rather than notepads and as many routines as possible were split into other files further reducing the minimum footprint of an RTEMS executable.
* This is another pass at making sure that nothing outside the BSPJoel Sherrill1999-11-051-2/+1
| | | | | | | | | | | | unnecessarily uses any variables defined by the BSP. On this sweep, use of BSP_Configuration and Cpu_table was eliminated. A significant part of this modification was the addition of macros to access fields in the RTEMS configuration structures. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
* The object memfile.o was being included in the miniIMFS even though itJoel Sherrill1999-11-0211-129/+228
| | | | | | | should not have been. This required that IMFS_rmnod be split into three separate (per file type) routines to avoid dependencies. In the end, a miniIMFS application is 6K smaller than one using the full IMFS.
* Fixed F_SETFL to properly convert between internalJoel Sherrill1999-11-021-2/+3
| | | | libio flags and external fcntl.h style flags.
* Added support for configuring base filesystem. First attempt atJoel Sherrill1999-11-021-17/+41
| | | | | | a full mount table at initialization. This is the wrong place to mount filesystems 2-n since no device drivers are initialized yet.
* Install imfs.h so base filesystem can be configured or IMFS mountedJoel Sherrill1999-11-021-1/+1
| | | | by an application.
* Check for NULL being passed in.Joel Sherrill1999-11-024-2/+17
|
* Fixed typo where memfile_handlers set twice and directory_handlersJoel Sherrill1999-11-021-3/+3
| | | | was not set.
* Properly initialize location variable.Joel Sherrill1999-11-021-0/+8
|
* Moved the rmnod callback from the operations table to the handler table.Jennifer Averett1999-10-296-11/+21
|
* Joel added a table of mount entry requests to be processed duringJennifer Averett1999-10-291-0/+14
| | | | initialization.
* New files created by split of old imfs_handlers.c.Joel Sherrill1999-10-263-0/+111
|
* Added include of libio.h so this would compile when posix is disabled.Joel Sherrill1999-10-261-0/+1
|
* Added initial cut at miniIMFS which leaves out memfile and directoryJoel Sherrill1999-10-2612-333/+232
| | | | | readdir support. The next step is to add a mount table and configure either the miniIMFS or the full IMFS at the application level.
* Patch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1999-10-251-7/+8
| | | | <raguet@crf.canon.fr> to use a local variable.
* Added code to correctly free any allocated space during the evaluationJennifer Averett1999-10-252-72/+74
| | | | process.
* Changed leading spaces to periods to ease comparing test output.Joel Sherrill1999-10-251-1/+1
|
* Spacing.Joel Sherrill1999-10-121-0/+1
|
* Split null handlers table to own file and renamed.Joel Sherrill1999-10-127-77/+17
| | | | Renamed IMFS handler tables to include IMFS prefix.
* Added rtems_filesystem_freenode() macro and added calls at appropriateJoel Sherrill1999-10-1216-92/+57
| | | | | places to make sure memory allocated for filesystem specifif nodes gets freed.
* Fixed spacing.Joel Sherrill1999-10-121-1/+1
|
* Corrected mistakes in the IMFS file handlers table and added the missingJoel Sherrill1999-10-125-31/+144
| | | | routine imfs_fcntl.c
* Added call to freenod to let each filesystem free its own internalJoel Sherrill1999-10-1215-68/+227
| | | | node used to manage file access.
* Changed bcopy to strncpy to stick to ANSI/ISO routines.Joel Sherrill1999-10-121-1/+1
|
* Moved RTEMS error and association from libmisc to libc support toJoel Sherrill1999-10-111-3/+9
| | | | | avoid cyclic dependencies generated when moving packages to the top level.
* New file.Joel Sherrill1999-10-062-0/+28
|
* Removed go32 ifdefsJoel Sherrill1999-10-051-3/+0
|
* Patch from Wayne Bullaughey <wayne@wmi.com>. Comments follow:Joel Sherrill1999-10-051-1/+1
| | | | | | | | | | | | I'm working on code to mount my host based file system on the base file system (imfs) and have a suggestion for a change to eval.c in the c/src/lib/libc directory of the 8/20/1999 snapshot. The current version does not test the result value returned from the evalpath callback (line 47) in the case where follow_link is true. Attached is my suggested change. Without this test the node_type callback may be called after evalpath failed. node_type could set the type to some value other then RTEMS_FILESYSTEM_HARD_LINK or RTEMS_FILESYSTEM_SYM_LINK but it seems cleaner to add the check on result.
* The fiels isatty.c and creat.c were copied from newlib/libc/posix toJoel Sherrill1999-10-041-1/+2
| | | | avoid conflicts.