source: rtems/cpukit/libcsupport/ChangeLog @ 294daf49

Last change on this file since 294daf49 was 294daf49, checked in by Joel Sherrill <joel.sherrill@…>, on 11/26/03 at 17:53:41

2003-11-26 Joel Sherrill <joel@…>

PR 524/filesystem

  • src/newlibc.c: Address 1K buffer leak from incomplete cleanup of newlib reentrancy handler.
  • Property mode set to 100644
File size: 12.5 KB
Line 
12003-11-26      Joel Sherrill <joel@OARcorp.com>
2
3        PR 524/filesystem
4        * src/newlibc.c: Address 1K buffer leak from incomplete cleanup of
5        newlib reentrancy handler.
6
72003-11-26      Joel Sherrill <joel@OARcorp.com>
8
9        PR 523/filesystem
10        * src/malloc.c: Make malloc family safer for use from ISRs and
11        dispatching critical sections. If in a critical section while doing
12        a free(), then the free is deferred until the next malloc() attempt.
13
142003-11-25      Jennifer Averett <jennifer@OARcorp.com>
15
16        PR 519/filesystem
17        * include/rtems/libio_.h, src/eval.c, src/rmdir.c, src/unlink.c:
18        Check write permissions in parent directory for file or
19        directory delete
20
212003-10-22      Joel Sherrill <joel@OARcorp.com>
22
23        PR 511/filesystem
24        * src/malloc.c: Add deferred free and protect against C Program Heap
25        operations while in a dispatch disable critical section or ISR.
26
272003-10-02      Phil Torre <ptorre@zetron.com>
28
29        PR 504/rtems
30        * src/newlibc.c: Fix memory allocation of libc extension so it is
31        dispatch disabled safe See PR for detailed explanation.
32
332003-09-26      Till Strauman <strauman@slac.stanford.edu>
34
35        PR 498/rtems
36        * src/printk.c: RTEMS printk() does not support the %i format which is
37        used by a lot of driver/BSP etc. code. The trivial patch allows %i/%I
38        as an alias for %d/%D.
39
402003-09-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
41
42        PR 489/rtems
43        * src/newlibc.c: Reflect struct Thread_Control_struct.libc_reent
44        having changed from void * to struct _reent*.
45
462003-09-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
47
48        PR 486/rtems
49        * src/newlib.c: Unconditionally include <stdio.h>
50
512003-09-04      Joel Sherrill <joel@OARcorp.com>
52
53        * include/chain.h, include/clockdrv.h, include/console.h,
54        include/iosupp.h, include/rtc.h, include/spurious.h,
55        include/timerdrv.h, include/vmeintr.h, include/motorola/mc68230.h,
56        include/rtems/libcsupport.h, include/rtems/libio.h,
57        include/rtems/libio_.h, include/rtems/termiostypes.h,
58        include/sys/termios.h, include/zilog/z8036.h, include/zilog/z8530.h,
59        include/zilog/z8536.h, src/__brk.c, src/__gettod.c, src/__sbrk.c,
60        src/__times.c, src/access.c, src/base_fs.c, src/cfgetispeed.c,
61        src/cfgetospeed.c, src/cfsetispeed.c, src/cfsetospeed.c, src/chdir.c,
62        src/chmod.c, src/chown.c, src/chroot.c, src/close.c, src/ctermid.c,
63        src/dup.c, src/dup2.c, src/eval.c, src/fchdir.c, src/fchmod.c,
64        src/fcntl.c, src/fdatasync.c, src/fpathconf.c,
65        src/fs_null_handlers.c, src/fstat.c, src/fsync.c, src/ftruncate.c,
66        src/getdents.c, src/getpwent.c, src/hosterr.c, src/ioctl.c,
67        src/isatty.c, src/libio.c, src/libio_sockets.c, src/link.c,
68        src/lseek.c, src/lstat.c, src/malloc.c, src/mallocfreespace.c,
69        src/mkdir.c, src/mkfifo.c, src/mknod.c, src/mount.c, src/newlibc.c,
70        src/no_libc.c, src/no_posix.c, src/open.c, src/pathconf.c,
71        src/pipe.c, src/privateenv.c, src/read.c, src/readlink.c,
72        src/rewinddir.c, src/rmdir.c, src/seekdir.c, src/stat.c,
73        src/symlink.c, src/tcdrain.c, src/tcflow.c, src/tcflush.c,
74        src/tcgetattr.c, src/tcgetprgrp.c, src/tcsendbreak.c,
75        src/tcsetattr.c, src/tcsetpgrp.c, src/telldir.c, src/termios.c,
76        src/termiosinitialize.c, src/truncate.c, src/umask.c, src/unixlibc.c,
77        src/unlink.c, src/unmount.c, src/utime.c, src/write.c: URL for
78        license changed.
79
802003-09-04      Joel Sherrill <joel@OARcorp.com>
81
82        PR 479/rtems_misc
83        * src/malloc.c: Per multiple standards realloc does not free the
84        original memory if the allocation of the requested larger block
85        fails.
86
872003-09-02      Joel Sherrill <joel@OARcorp.com>
88
89        * src/open.c: Fix typo.
90
912003-09-02      Ilya Alexeev <ilya@continuum.ru>
92
93        PR 472/filesystem
94        src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.
95
962003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
97
98        PR 449/rtems:
99        * src/getegid.c: New (Copied from ../posix/src).
100        * src/geteuid.c: New (Copied from ../posix/src).
101        * src/getgid.c: New (Copied from ../posix/src).
102        * src/getgroups.c: New (Copied from ../posix/src).
103        * src/getlogin.c: New (Copied from ../posix/src).
104        * src/getpgrp.c: New (Copied from ../posix/src).
105        * src/getpid.c: New (Copied from ../posix/src).
106        * src/getppid.c: New (Copied from ../posix/src).
107        * src/getuid.c: New (Copied from ../posix/src).
108        * src/setpgid.c: New (Copied from ../posix/src).
109        * src/setsid.c: New (Copied from ../posix/src).
110        * src/no_posix: Remove getpid and _getpid_r.
111        * Makefile.am: Reflect changes above.
112
1132003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
114
115        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
116
1172003-08-05      Till Strauman <strauman@slac.stanford.edu>
118
119        PR 442/filesystem
120        * src/open.c: file never closed if ftruncate() fails in open()
121
1222003-07-08      Joel Sherrill <joel@OARcorp.com>
123
124        PR 419/rtems
125        * src/termios.c: Removed warning.
126
1272003-07-02      Chris Johns <cjohns@cybertec.com.au>
128
129        * include/rtems/libio.h, src/termios.c: Patch by Chris Johns
130        <cjohns@cybertec.com.au> adding the rtems_termios_bufsize call.
131       
1322003-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
133
134        * Makefile.am: Conditionally install stdint.h/inttypes.h.
135        * configure.ac: Check for system-stdint.h/inttypes.h.
136
1372003-05-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
138
139        PR 409:
140        * include/stdint.h: Include rtems/stdint.h
141
1422003-04-17      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
143
144        PR 399/rtems_misc
145        * src/termios.c: In canonical mode, when input is present in the
146        input buffer that contains an EOL character and some following
147        characters, a read call read data behind the EOL character, although
148        it should stop reading with the EOL character.
149
1502003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
151
152        * src/no_posix.c: include <reent.h> instead of <sys/reent.h>
153
1542003-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
155
156        PR 389/rtems
157        * src/no_posix.c: Correct _kill_r() prototype and make it conditional
158        on newlib.
159
1602003-04-03      Eri Valette <eric.valette@free.fr>
161
162        PR 381/core
163        * src/newlibc.c: Switch from using _REENT_INIT to _REEINT_INIT_PTR
164        to fix strange run-time problem where EIP was corrupted on pc386 BSP.
165
1662003-03-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
167
168        * configure.ac: AC_CHECK_FUNCS(strlcpy strlcat).
169        * src/strlcat.c: New (extracted from pppd/utils.c).
170        * src/strlcpy.c: New (extracted from pppd/utils.c).
171        * Makefile.am: Add BSD_C_FILES, strlcat.c, strlcpy.c.
172
1732003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
174
175        * configure.ac: Remove AC_CONFIG_AUX_DIR.
176
1772003-02-20      Wolfram Wadepohl <W.Wadepohl@indumat.de>
178
179        PR 357/rtems_misc
180        * src/termios.c (rtems_termios_open):  Fixed code the incorrectly
181        checked that the wrong pointer during allocation was NULL.
182
1832003-02-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
184
185        * src/privateenv.c: Fix prototype for free_user_env.
186
1872003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
188
189        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
190
1912003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
192
193        * configure.ac: AC_PREREQ(2.57).
194
1952003-02-06      Joel Sherrill <joel@OARcorp.com>
196
197        * include/sys/ioccom.h: Include <sys/types.h> not <machine/types.h> so
198        Linux port builds.
199
2002003-02-05     Till Straumann  <strauman@slac.stanford.edu>
201
202        PR 340/filesystem
203        * src/fcntl.c: Add missing _fcntl_r assumed to exist by newlib.
204
2052003-02-05      Joel Sherrill <joel@OARcorp.com>
206
207        * include/sys/ioccom.h: Fix so not using internal RTEMS types in libc
208        code.
209
2102003-02-03      Joel Sherrill <joel@OARcorp.com>
211
212        PR 338/filesystem
213        * src/unixlibc.c: Side-effect of fixing reentrancy problem with
214        rtems_io_lookup_name() (API change).
215
2162003-02-03     Till Straumann  <strauman@slac.stanford.edu>
217
218        PR 339/filesystem
219        * src/chroot.c: Fix violation of FS node object copy semantics.
220
2212003-01-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
222
223        * Makefile.am: Eliminate OBJS.
224
2252003-01-10      Joel Sherrill <joel@OARcorp.com>
226
227        * include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to avoid
228        conflict with GNU/Linux header files.
229
2302003-01-03     Till Straumann  <strauman@slac.stanford.edu>
231
232        * ChangeLog, base_fs.c, getpwent.c, privateenv.c
233        Per PR303, Fix violation of node_access copy syemantics
234
2352002-12-26     Till Straumann  <strauman@slac.stanford.edu
236
237        * src/fchdir.c: PR302 fix violation of FS node object copy semantics.
238
2392002-12-06      Joel Sherrill <joel@OARcorp.com>
240
241        * src/malloc.c: Fixed code that incorrected did a disable dispatch
242        instead of locking and unlocking the allocator mutex.
243
2442002-12-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
245
246        * configure.ac: Add various checks to enhance portability.
247        * src/termios.c: Reflect changes to configure.ac.
248
2492002-12-02      Joel Sherrill <joel@OARcorp.com>
250
251        * include/rtems/libio.h: Internally use a union of an unsigned64
252        and major/minor device so we don't get into trouble shifting.
253        The h8300 seemed to be impossible to remove warnings otherwise.
254        Eventually the structure definition of a dev_t might be better anyway.
255        * include/sys/ioccom.h: Added casts to remove warnings on 16 bit
256        targets.
257
2582002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
259
260        * configure.ac: Cosmetical fixes.
261
2622002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * configure.ac: Fix package name.
265
2662002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * configure.ac: Check for sys/cdefs.h, Add NEED_SYS_CDEFS_H.
269        Add check for CHAR_BIT.
270        * Makefile.am: Conditionally install sys/cdefs.h iff using newlib or
271        if the host does not provide sys/cdefs.h (Fixes Linux/posix).
272
2732002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * configure.ac: Remove -ansi -fasm.
276        Add checks to diagnose potential system header conflicts.
277        * Makefile.am: Unconditionally install sys/cdefs.h.
278
2792002-11-07      <strauman@slac.stanford.edu>
280
281        * src/mount.c: Per PR297, correct fs_mountme failure paths.
282
2832002-11-01      Joel Sherrill <joel@OARcorp.com>
284
285        * ChangeLog: Corrected.
286
2872002-10-30      Eric Norum <eric.norum@usask.ca>
288
289        * src/printk.c: Add vprintk function for kernel printing
290        from routines which have already obtained the va_list pointer.
291
2922002-10-31      Joel Sherrill <joel@OARcorp.com>
293
294        * src/mallocfreespace.c: Corrected sense of status check to
295        match change inside RTEMS.
296        * src/newlibc.c: Removed warning.
297
2982002-10-28      Joel Sherrill <joel@OARcorp.com>
299
300        * include/rtems/libio.h: Change rtems_filesystem_node_types_t from
301        enumeration to int to eliminate warnings when values are overridden.
302
3032002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
306
3072002-10-24      <strauman@slac.stanford.edu>
308
309        * src/eval.c: Per PR293, added freenode calls for evaluate
310          link failures.
311
3122002-10-23      <strauman@slac.stanford.edu>
313
314        * src/mount.c per PR290, add check for ops->node_type_h
315        * src/mknod.c per PR291, remove erroneous call to freenod
316
3172002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * .cvsignore: Reformat.
320        Add autom4te*cache.
321        Remove autom4te.cache.
322
3232002-10-02      Eric Norum <eric.norum@usask.ca>
324
325        * src/getpwent.c: Per PR283, reimplement to address reentrancy problems.
326        * src/getgrent.c: Removed as functionality is now just a wrapper for
327        common routines in src/getpwent.c.
328        * Makefile.am: Reflect file removal.
329
3302002-09-14      Joel Sherrill <joel@OARcorp.com>
331
332        * include/rtems/libio.h: Change rtems_filesystem_read_t and
333        rtems_filesystem_write_t to return ssize_t to match read(2)
334        and write(2) respectively.
335
3362002-09-14      Eric Norum <eric.norum@usask.ca>
337
338        * src/readdir_r.c: New file.
339        * Makefile.am: Reflect above.
340
3412002-08-12      Eric Norum <eric.norum@usask.ca>
342
343        * src/write.c (_write_r): Change prototype to match newlib's reent.h.
344
3452002-07-30      Joel Sherrill <joel@OARcorp.com>
346
347        * include/sys/utime.h: Removed as file is now part of the RTEMS
348        newlib support.
349        * Makefile.am: Reflect above.
350        * include/rtems/termiostypes.h: Avoid use of __P.
351
3522002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        * Makefile.am: Use .$(OBJEXT) instead of .o.
355
3562002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
357
358        * Makefile.am: Eliminate LIBNAME. Use AM_CPPFLAGS instead of
359        INCLUDES (Upcoming automake standard).
360
3612002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * configure.ac: RTEMS_TOP(../..).
364
3652002-07-01      Joel Sherrill <joel@OARcorp.com>
366
367        * src/__times.c: Corrected from previous attempt to cleanup.
368
3692002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * configure.ac: Remove RTEMS_PROJECT_ROOT.
372
3732002-06-28      Joel Sherrill <joel@OARcorp.com>
374
375        * src/__times.c: Cleaned up comments, return more information,
376        and eliminated the fatal error on clock not set since it cannot
377        occur.
378
3792002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
382        Add AC_PROG_RANLIB.
383
3842002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * Makefile.am: Merge src/Makefile.am.
387        * configure.ac: Reflect changes above.
388        * src/Makefile.am: Remove.
389
3902002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
393        Use ../aclocal.
394        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
395
3962001-05-24      Joel Sherrill <joel@OARcorp.com>
397
398        * src/.cvsignore: New file.
399
Note: See TracBrowser for help on using the repository browser.