summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-12-012003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-2/+6
* Makefile.am: Add $(dirstamp) to compilation rules.
2003-11-302003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-70/+83
* Makefile.am: Add $(dirstamp) to preinstallation rules.
2003-11-262003-11-26 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-0/+34
PR 524/filesystem * src/newlibc.c: Address 1K buffer leak from incomplete cleanup of newlib reentrancy handler.
2003-11-262003-11-26 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-11/+24
PR 523/filesystem * src/malloc.c: Make malloc family safer for use from ISRs and dispatching critical sections. If in a critical section while doing a free(), then the free is deferred until the next malloc() attempt.
2003-11-252003-11-25 Jennifer Averett <jennifer@OARcorp.com>Jennifer Averett5-0/+48
PR 519/filesystem * include/rtems/libio_.h, src/eval.c, src/rmdir.c, src/unlink.c: Check write permissions in parent directory for file or directory delete
2003-11-222003-11-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-3/+7
* include/rtems/cdefs.h: Use _RTEMS_CDEFS_H guards.
2003-11-222003-11-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius3-59/+355
* include/rtems/cdefs.h: New. * Makefile.am: Completely reworked.
2003-11-202003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius3-6/+6
* src/config.h: Remove. * src/Makefile.am: AM_CPPFLAGS += -I$(top_builddir).
2003-10-222003-10-22 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-0/+54
PR 511/filesystem * src/malloc.c: Add deferred free and protect against C Program Heap operations while in a dispatch disable critical section or ISR.
2003-10-022003-10-02 Phil Torre <ptorre@zetron.com>Joel Sherrill2-31/+58
PR 504/rtems * src/newlibc.c: Fix memory allocation of libc extension so it is dispatch disabled safe See PR for detailed explanation.
2003-09-262003-09-26 Till Strauman <strauman@slac.stanford.edu>Joel Sherrill2-0/+8
PR 498/rtems * src/printk.c: RTEMS printk() does not support the %i format which is used by a lot of driver/BSP etc. code. The trivial patch allows %i/%I as an alias for %d/%D.
2003-09-152003-09-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-2/+8
PR 489/rtems * src/newlibc.c: Reflect struct Thread_Control_struct.libc_reent having changed from void * to struct _reent*.
2003-09-132003-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-5/+6
* src/sync.c: Don't undef __STRICT_ANSI__. Use struct _reent (struct reent doesn't exist)
2003-09-132003-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-4/+5
PR 486/rtems * src/newlib.c: Unconditionally include <stdio.h>
2003-09-042003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill95-94/+123
* include/chain.h, include/clockdrv.h, include/console.h, include/iosupp.h, include/rtc.h, include/spurious.h, include/timerdrv.h, include/vmeintr.h, include/motorola/mc68230.h, include/rtems/libcsupport.h, include/rtems/libio.h, include/rtems/libio_.h, include/rtems/termiostypes.h, include/sys/termios.h, include/zilog/z8036.h, include/zilog/z8530.h, include/zilog/z8536.h, src/__brk.c, src/__gettod.c, src/__sbrk.c, src/__times.c, src/access.c, src/base_fs.c, src/cfgetispeed.c, src/cfgetospeed.c, src/cfsetispeed.c, src/cfsetospeed.c, src/chdir.c, src/chmod.c, src/chown.c, src/chroot.c, src/close.c, src/ctermid.c, src/dup.c, src/dup2.c, src/eval.c, src/fchdir.c, src/fchmod.c, src/fcntl.c, src/fdatasync.c, src/fpathconf.c, src/fs_null_handlers.c, src/fstat.c, src/fsync.c, src/ftruncate.c, src/getdents.c, src/getpwent.c, src/hosterr.c, src/ioctl.c, src/isatty.c, src/libio.c, src/libio_sockets.c, src/link.c, src/lseek.c, src/lstat.c, src/malloc.c, src/mallocfreespace.c, src/mkdir.c, src/mkfifo.c, src/mknod.c, src/mount.c, src/newlibc.c, src/no_libc.c, src/no_posix.c, src/open.c, src/pathconf.c, src/pipe.c, src/privateenv.c, src/read.c, src/readlink.c, src/rewinddir.c, src/rmdir.c, src/seekdir.c, src/stat.c, src/symlink.c, src/sync.c, src/tcdrain.c, src/tcflow.c, src/tcflush.c, src/tcgetattr.c, src/tcgetprgrp.c, src/tcsendbreak.c, src/tcsetattr.c, src/tcsetpgrp.c, src/telldir.c, src/termios.c, src/termiosinitialize.c, src/truncate.c, src/umask.c, src/unixlibc.c, src/unlink.c, src/unmount.c, src/utime.c, src/write.c: URL for license changed.
2003-09-042003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+13
PR 479/rtems_misc * src/malloc.c: Per multiple standards realloc does not free the original memory if the allocation of the requested larger block fails.
2003-09-022003-09-02 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+5
* src/open.c: Fix typo.
2003-09-022003-09-02 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+4
* src/malloc.c: Remove test define left in.
2003-09-022003-09-02 Ilya Alexeev <ilya@continuum.ru>Joel Sherrill2-0/+7
PR 472/filesystem src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.
2003-08-18Remove bogus file src/listRalf Corsepius1-11/+0
2003-08-182003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius15-23/+450
PR 449/rtems: * src/getegid.c: New (Copied from ../posix/src). * src/geteuid.c: New (Copied from ../posix/src). * src/getgid.c: New (Copied from ../posix/src). * src/getgroups.c: New (Copied from ../posix/src). * src/getlogin.c: New (Copied from ../posix/src). * src/getpgrp.c: New (Copied from ../posix/src). * src/getpid.c: New (Copied from ../posix/src). * src/getppid.c: New (Copied from ../posix/src). * src/getuid.c: New (Copied from ../posix/src). * src/setpgid.c: New (Copied from ../posix/src). * src/setsid.c: New (Copied from ../posix/src). * src/no_posix: Remove getpid and _getpid_r. * Makefile.am: Reflect changes above.
2003-08-142003-08-14 Joel Sherrill <joel@OARcorp.com>Joel Sherrill3-1/+75
* Makefile.am: Add fileio to list of interactive tests. * src/sync.c: New file.
2003-08-052003-08-05 Till Strauman <strauman@slac.stanford.edu>Jennifer Averett2-0/+11
PR 442/filesystem * src/open.c: file never closed if ftruncate() fails in open()
2003-07-08CleanupRalf Corsepius1-12/+0
2003-07-082003-07-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-0/+6
PR 419/rtems * src/termios.c: Removed warning.
2003-07-082003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius4-94/+18
* configure.ac: Remove (Merged-in into ../configure.ac) * Makefile.am: DOC_FILES = src/TODO src/CASES, Reflect having merged configure.ac into ../configure.ac. * src/config.h: New.
2003-07-02Fixed formatting.Joel Sherrill1-0/+1
2003-07-02Patch by Chris Johns <cjohns@cybertec.com.au> adding the ↵Chris Johns3-7/+34
rtems_termios_bufsize call.
2003-05-30Merger from rtems-4.6-branchRalf Corsepius3-5/+18
2003-05-272003-05-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-9/+6
PR 409: * include/stdint.h: Include rtems/stdint.h
2003-05-262003-04-17 Thomas Doerfler <Thomas.Doerfler@imd-systems.de>Joel Sherrill2-1/+12
PR 399/rtems_misc * src/termios.c: In canonical mode, when input is present in the input buffer that contains an EOL character and some following characters, a read call read data behind the EOL character, although it should stop reading with the EOL character.
2003-04-17Merger from rtems-4-6-branch.Ralf Corsepius2-2/+6
2003-04-162003-04-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2-1/+11
PR 389/rtems * src/no_posix.c: Correct _kill_r() prototype and make it conditional on newlib.
2003-04-032003-04-03 Eri Valette <eric.valette@free.fr>Joel Sherrill2-1/+7
PR 381/core * src/newlibc.c: Switch from using _REENT_INIT to _REEINT_INIT_PTR to fix strange run-time problem where EIP was corrupted on pc386 BSP.
2003-03-25Merger from rtems-4-6-branch.Ralf Corsepius5-1/+105
2003-03-11Merger from rtems-4-6-branch.Ralf Corsepius2-1/+4
2003-02-28Merger from rtems-4-6-branch.Ralf Corsepius2-1/+7
2003-02-28Remove corrupted ChangeLog entry.Ralf Corsepius1-66/+0
2003-02-20Patch against RTEMS-ss-20030128Joel Sherrill3-2/+69
Author: Till Straumann <strauman@slac.stanford.edu> 2003/2/11 This patch addresses the following issues: 2003-02-20 Till Straumann <strauman@slac.stanford.edu> PR 349/bsps * src/mount.c, src/privateenv.c: - mount() bugfix: allocated 'loc' node must be released if mount fails due to missing node_type_h - silence compiler warning about improper pointer type Index: cpukit/libcsupport/src/mount.c =================================================================== RCS file: /afs/slac/g/spear/cvsrep/rtems/src-20030128/cpukit/libcsupport/src/mount.c,v retrieving revision 1.1.1.2 diff -c -r1.1.1.2 mount.c *** cpukit/libcsupport/src/mount.c 29 Jan 2003 22:57:19 -0000 1.1.1.2 --- cpukit/libcsupport/src/mount.c 7 Feb 2003 20:47:49 -0000 *************** *** 142,147 **** --- 142,149 ---- mount_point, RTEMS_LIBIO_PERMS_RWX, &loc, TRUE ) == -1 ) goto cleanup_and_bail; + loc_to_free = &loc; + /* * Test for node_type_h */ *************** *** 155,161 **** * Test to see if it is a directory */ - loc_to_free = &loc; if ( loc.ops->node_type_h( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) { errno = ENOTDIR; goto cleanup_and_bail; --- 157,162 ---- Index: cpukit/libcsupport/src/privateenv.c =================================================================== RCS file: /afs/slac/g/spear/cvsrep/rtems/src-20030128/cpukit/libcsupport/src/privateenv.c,v retrieving revision 1.1.1.3 diff -c -r1.1.1.3 privateenv.c *** cpukit/libcsupport/src/privateenv.c 29 Jan 2003 22:57:20 -0000 1.1.1.3 --- cpukit/libcsupport/src/privateenv.c 30 Jan 2003 18:01:40 -0000 *************** *** 65,71 **** tmp->refcnt = 1; #endif ! sc = rtems_task_variable_add(RTEMS_SELF,(void*)&rtems_current_user_env,free_user_env); if (sc != RTEMS_SUCCESSFUL) { /* don't use free_user_env because the pathlocs are * not initialized yet --- 65,71 ---- tmp->refcnt = 1; #endif ! sc = rtems_task_variable_add(RTEMS_SELF,(void*)&rtems_current_user_env,(void(*)(void *))free_user_env); if (sc != RTEMS_SUCCESSFUL) { /* don't use free_user_env because the pathlocs are * not initialized yet
2003-02-202003-02-20 Wolfram Wadepohl <W.Wadepohl@indumat.de>Joel Sherrill2-1/+7
PR 357/rtems_misc * src/termios.c (rtems_termios_open): Fixed code the incorrectly checked that the wrong pointer during allocation was NULL.
2003-02-112003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-1/+5
* configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
2003-02-112003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-1/+5
* configure.ac: AC_PREREQ(2.57).
2003-02-062003-02-06 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+6
* include/sys/ioccom.h: Include <sys/types.h> not <machine/types.h> so Linux port builds.
2003-02-052003-02-05 Till Straumann <strauman@slac.stanford.edu>Joel Sherrill2-5/+44
PR 340/filesystem * src/fcntl.c: Add missing _fcntl_r assumed to exist by newlib.
2003-02-052003-02-05 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+11
* include/sys/ioccom.h: Fix so not using internal RTEMS types in libc code.
2003-02-032003-02-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+7
PR 338/filesystem * src/unixlibc.c: Side-effect of fixing reentrancy problem with rtems_io_lookup_name() (API change).
2003-02-032003-02-03 Till Straumann <strauman@slac.stanford.edu>Joel Sherrill2-4/+12
PR 339/filesystem * src/chroot.c: Fix violation of FS node object copy semantics.
2003-01-142003-01-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-2/+5
* Makefile.am: Eliminate OBJS.
2003-01-102003-01-10 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-4/+9
* include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to avoid conflict with GNU/Linux header files.
2003-01-032003-01-03 Till Straumann <strauman@slac.stanford.edu>Joel Sherrill1-0/+9
* ChangeLog, base_fs.c, getpwent.c, privateenv.c Per PR303, Fix violation of node_access copy syemantics 2002-12-26 Till Straumann <strauman@slac.stanford.edu * src/fchdir.c: PR302 fix violation of FS node object copy semantics.