source: rtems/cpukit/libcsupport/ChangeLog @ db9d7fc

Last change on this file since db9d7fc was db9d7fc, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/12/04 at 23:40:26

2004-01-12 Ralf Corsepius <corsepiu@…>

PR 548/rtems

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