summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc (unfollow)
Commit message (Collapse)AuthorFilesLines
2000-06-12Merged from 4.5.0-beta3aJoel Sherrill14-60/+285
2000-05-08New file added on 4.5 branchJoel Sherrill1-0/+0
2000-04-13Patch rtems-rc-4.5.0-13-cvs.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill1-0/+2
adds .cvsignore.
2000-02-11Increased block size to 128 and added comments based on feedback fromJoel Sherrill1-1/+13
Java folks including Oscar Martinez de la Torre <omt@wm.estec.esa.nl>.
2000-02-08Patches rtems-rc-20000204-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-2/+0
that contains: * Removes remaining (now illegal) references to $(SRC) from a couple of Makefile.ams * Removes duplicate AC_CONFIG_SUBDIRS macro from c/configure.in * Moves ENABLE_LIBCDIR into RTEMS_PROG_C[C|XX]_FOR_TARGET (hides LIBCDIR from most configure scripts, i.e. LIBCDIR becomes less visible) * Adds RTEMS_PROG_C[C|XX]_FOR_TARGET and RTEMS_CANONICALIZE_TOOLS to libbsp/*/configure.ins (A minor bug in previous implementations, which only has an impact when switching to GNU/Cygnus canonicalization) * Cleans up several bogus comments. * Removes MKLIB * Switches the version number to 4.5.0 (for testing version number handling)
2000-01-31Patches rtems-rc-20000118-3.diff and rtems-rc-20000118-4.diff fromJoel Sherrill1-1/+0
Ralf Corsepius <corsepiu@faw.uni-ulm.de> that contain: * Modifications, (minor) corrections, cleanups to most existing Makefile.ams * Adds automake support to all remaining BSPs which have not yet been converted to automake. * Makefile.am for all remaining wrapup/Makefile.ams
2000-01-05Spacing corrected.Joel Sherrill1-1/+1
1999-12-13Removed warnings.Joel Sherrill1-1/+1
1999-12-13Warning removal patch from Philip A. Prindeville <philipp@zembu.com>.Joel Sherrill1-1/+1
1999-12-13Added RTEMS_IO_ERROR.Joel Sherrill1-0/+1
1999-11-30Removed duplicate definition of rtems_filesystem_umask.Joel Sherrill1-6/+0
1999-11-30Corrected so they would compile with POSIX disabled.Joel Sherrill2-2/+3
1999-11-29Fixed spacing.Joel Sherrill1-1/+1
1999-11-22Patch rtems-rc-19991117-9.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2-126/+127
to convert the libc directory to automake and "dozens of small fixes for Makefile.ins/configure.ins below c/src/lib."
1999-11-17Updated copyright notice.Joel Sherrill104-208/+104
1999-11-16Added TERMINAL_IDENTIFICATION pieces.Joel Sherrill1-3/+4
1999-11-16Fixed bug.Jennifer Averett1-3/+3
1999-11-16Added handler for fsync. For the memfile it is the same as the data sync.Jennifer Averett1-1/+1
1999-11-16Works now.Joel Sherrill1-19/+12
Removed times() since the version in the C Library support code is fine.
1999-11-16New file.Joel Sherrill1-0/+113
1999-11-16Added.Joel Sherrill6-3/+209
1999-11-16Source and destination arguments to strncpy were swapped. This mistakeJoel Sherrill1-1/+1
was made in the conversion of bcopy() to strncpy().
1999-11-09Added imfs_unixstub.c to satisfy linker problems on UNIX port.Joel Sherrill2-1/+73
1999-11-05Correctly set and called handlers table for the link.Jennifer Averett1-1/+3
1999-11-05Fixed commentJennifer Averett1-1/+1
1999-11-05Moved imfs set handlers prototype to the imfs.h file.Jennifer Averett2-6/+4
1999-11-05New file.Joel Sherrill1-0/+38
1999-11-05Unmount was failing as a side-effect of splitting the rmnod handlerJoel Sherrill8-65/+105
and not handling every case properly.
1999-11-05Following comments from Eric Norum <eric@cls.usask.ca>, a fairlyJoel Sherrill4-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.
1999-11-05This is another pass at making sure that nothing outside the BSPJoel Sherrill1-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>.
1999-11-02The object memfile.o was being included in the miniIMFS even though itJoel Sherrill11-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.
1999-11-02Fixed F_SETFL to properly convert between internalJoel Sherrill1-2/+3
libio flags and external fcntl.h style flags.
1999-11-02Added support for configuring base filesystem. First attempt atJoel Sherrill1-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.
1999-11-02Install imfs.h so base filesystem can be configured or IMFS mountedJoel Sherrill1-1/+1
by an application.
1999-11-02Check for NULL being passed in.Joel Sherrill4-2/+17
1999-11-02Fixed typo where memfile_handlers set twice and directory_handlersJoel Sherrill1-3/+3
was not set.
1999-11-02Properly initialize location variable.Joel Sherrill1-0/+8
1999-10-29Moved the rmnod callback from the operations table to the handler table.Jennifer Averett6-11/+21
1999-10-29Joel added a table of mount entry requests to be processed duringJennifer Averett1-0/+14
initialization.
1999-10-26New files created by split of old imfs_handlers.c.Joel Sherrill3-0/+111
1999-10-26Added include of libio.h so this would compile when posix is disabled.Joel Sherrill1-0/+1
1999-10-26Added initial cut at miniIMFS which leaves out memfile and directoryJoel Sherrill12-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.
1999-10-25Patch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1-7/+8
<raguet@crf.canon.fr> to use a local variable.
1999-10-25Added code to correctly free any allocated space during the evaluationJennifer Averett2-72/+74
process.
1999-10-25Changed leading spaces to periods to ease comparing test output.Joel Sherrill1-1/+1
1999-10-12Spacing.Joel Sherrill1-0/+1
1999-10-12Split null handlers table to own file and renamed.Joel Sherrill7-77/+17
Renamed IMFS handler tables to include IMFS prefix.
1999-10-12Added rtems_filesystem_freenode() macro and added calls at appropriateJoel Sherrill16-92/+57
places to make sure memory allocated for filesystem specifif nodes gets freed.
1999-10-12Fixed spacing.Joel Sherrill1-1/+1
1999-10-12Corrected mistakes in the IMFS file handlers table and added the missingJoel Sherrill5-31/+144
routine imfs_fcntl.c