source: rtems/cpukit/libcsupport/ChangeLog @ 7fa97181

Last change on this file since 7fa97181 was 49f466c, checked in by Joel Sherrill <joel.sherrill@…>, on 10/22/03 at 16:54:15

2003-10-22 Joel Sherrill <joel@…>

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.
  • Property mode set to 100644
File size: 11.9 KB
Line 
12003-10-22      Joel Sherrill <joel@OARcorp.com>
2
3        PR 511/filesystem
4        * src/malloc.c: Add deferred free and protect against C Program Heap
5        operations while in a dispatch disable critical section or ISR.
6
72003-10-02      Phil Torre <ptorre@zetron.com>
8
9        PR 504/rtems
10        * src/newlibc.c: Fix memory allocation of libc extension so it is
11        dispatch disabled safe See PR for detailed explanation.
12
132003-09-26      Till Strauman <strauman@slac.stanford.edu>
14
15        PR 498/rtems
16        * src/printk.c: RTEMS printk() does not support the %i format which is
17        used by a lot of driver/BSP etc. code. The trivial patch allows %i/%I
18        as an alias for %d/%D.
19
202003-09-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
21
22        PR 489/rtems
23        * src/newlibc.c: Reflect struct Thread_Control_struct.libc_reent
24        having changed from void * to struct _reent*.
25
262003-09-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
27
28        PR 486/rtems
29        * src/newlib.c: Unconditionally include <stdio.h>
30
312003-09-04      Joel Sherrill <joel@OARcorp.com>
32
33        * include/chain.h, include/clockdrv.h, include/console.h,
34        include/iosupp.h, include/rtc.h, include/spurious.h,
35        include/timerdrv.h, include/vmeintr.h, include/motorola/mc68230.h,
36        include/rtems/libcsupport.h, include/rtems/libio.h,
37        include/rtems/libio_.h, include/rtems/termiostypes.h,
38        include/sys/termios.h, include/zilog/z8036.h, include/zilog/z8530.h,
39        include/zilog/z8536.h, src/__brk.c, src/__gettod.c, src/__sbrk.c,
40        src/__times.c, src/access.c, src/base_fs.c, src/cfgetispeed.c,
41        src/cfgetospeed.c, src/cfsetispeed.c, src/cfsetospeed.c, src/chdir.c,
42        src/chmod.c, src/chown.c, src/chroot.c, src/close.c, src/ctermid.c,
43        src/dup.c, src/dup2.c, src/eval.c, src/fchdir.c, src/fchmod.c,
44        src/fcntl.c, src/fdatasync.c, src/fpathconf.c,
45        src/fs_null_handlers.c, src/fstat.c, src/fsync.c, src/ftruncate.c,
46        src/getdents.c, src/getpwent.c, src/hosterr.c, src/ioctl.c,
47        src/isatty.c, src/libio.c, src/libio_sockets.c, src/link.c,
48        src/lseek.c, src/lstat.c, src/malloc.c, src/mallocfreespace.c,
49        src/mkdir.c, src/mkfifo.c, src/mknod.c, src/mount.c, src/newlibc.c,
50        src/no_libc.c, src/no_posix.c, src/open.c, src/pathconf.c,
51        src/pipe.c, src/privateenv.c, src/read.c, src/readlink.c,
52        src/rewinddir.c, src/rmdir.c, src/seekdir.c, src/stat.c,
53        src/symlink.c, src/tcdrain.c, src/tcflow.c, src/tcflush.c,
54        src/tcgetattr.c, src/tcgetprgrp.c, src/tcsendbreak.c,
55        src/tcsetattr.c, src/tcsetpgrp.c, src/telldir.c, src/termios.c,
56        src/termiosinitialize.c, src/truncate.c, src/umask.c, src/unixlibc.c,
57        src/unlink.c, src/unmount.c, src/utime.c, src/write.c: URL for
58        license changed.
59
602003-09-04      Joel Sherrill <joel@OARcorp.com>
61
62        PR 479/rtems_misc
63        * src/malloc.c: Per multiple standards realloc does not free the
64        original memory if the allocation of the requested larger block
65        fails.
66
672003-09-02      Joel Sherrill <joel@OARcorp.com>
68
69        * src/open.c: Fix typo.
70
712003-09-02      Ilya Alexeev <ilya@continuum.ru>
72
73        PR 472/filesystem
74        src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.
75
762003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
77
78        PR 449/rtems:
79        * src/getegid.c: New (Copied from ../posix/src).
80        * src/geteuid.c: New (Copied from ../posix/src).
81        * src/getgid.c: New (Copied from ../posix/src).
82        * src/getgroups.c: New (Copied from ../posix/src).
83        * src/getlogin.c: New (Copied from ../posix/src).
84        * src/getpgrp.c: New (Copied from ../posix/src).
85        * src/getpid.c: New (Copied from ../posix/src).
86        * src/getppid.c: New (Copied from ../posix/src).
87        * src/getuid.c: New (Copied from ../posix/src).
88        * src/setpgid.c: New (Copied from ../posix/src).
89        * src/setsid.c: New (Copied from ../posix/src).
90        * src/no_posix: Remove getpid and _getpid_r.
91        * Makefile.am: Reflect changes above.
92
932003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
94
95        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
96
972003-08-05      Till Strauman <strauman@slac.stanford.edu>
98
99        PR 442/filesystem
100        * src/open.c: file never closed if ftruncate() fails in open()
101
1022003-07-08      Joel Sherrill <joel@OARcorp.com>
103
104        PR 419/rtems
105        * src/termios.c: Removed warning.
106
1072003-07-02      Chris Johns <cjohns@cybertec.com.au>
108
109        * include/rtems/libio.h, src/termios.c: Patch by Chris Johns
110        <cjohns@cybertec.com.au> adding the rtems_termios_bufsize call.
111       
1122003-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
113
114        * Makefile.am: Conditionally install stdint.h/inttypes.h.
115        * configure.ac: Check for system-stdint.h/inttypes.h.
116
1172003-05-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
118
119        PR 409:
120        * include/stdint.h: Include rtems/stdint.h
121
1222003-04-17      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
123
124        PR 399/rtems_misc
125        * src/termios.c: In canonical mode, when input is present in the
126        input buffer that contains an EOL character and some following
127        characters, a read call read data behind the EOL character, although
128        it should stop reading with the EOL character.
129
1302003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
131
132        * src/no_posix.c: include <reent.h> instead of <sys/reent.h>
133
1342003-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
135
136        PR 389/rtems
137        * src/no_posix.c: Correct _kill_r() prototype and make it conditional
138        on newlib.
139
1402003-04-03      Eri Valette <eric.valette@free.fr>
141
142        PR 381/core
143        * src/newlibc.c: Switch from using _REENT_INIT to _REEINT_INIT_PTR
144        to fix strange run-time problem where EIP was corrupted on pc386 BSP.
145
1462003-03-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
147
148        * configure.ac: AC_CHECK_FUNCS(strlcpy strlcat).
149        * src/strlcat.c: New (extracted from pppd/utils.c).
150        * src/strlcpy.c: New (extracted from pppd/utils.c).
151        * Makefile.am: Add BSD_C_FILES, strlcat.c, strlcpy.c.
152
1532003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
154
155        * configure.ac: Remove AC_CONFIG_AUX_DIR.
156
1572003-02-20      Wolfram Wadepohl <W.Wadepohl@indumat.de>
158
159        PR 357/rtems_misc
160        * src/termios.c (rtems_termios_open):  Fixed code the incorrectly
161        checked that the wrong pointer during allocation was NULL.
162
1632003-02-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
164
165        * src/privateenv.c: Fix prototype for free_user_env.
166
1672003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
168
169        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
170
1712003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
172
173        * configure.ac: AC_PREREQ(2.57).
174
1752003-02-06      Joel Sherrill <joel@OARcorp.com>
176
177        * include/sys/ioccom.h: Include <sys/types.h> not <machine/types.h> so
178        Linux port builds.
179
1802003-02-05     Till Straumann  <strauman@slac.stanford.edu>
181
182        PR 340/filesystem
183        * src/fcntl.c: Add missing _fcntl_r assumed to exist by newlib.
184
1852003-02-05      Joel Sherrill <joel@OARcorp.com>
186
187        * include/sys/ioccom.h: Fix so not using internal RTEMS types in libc
188        code.
189
1902003-02-03      Joel Sherrill <joel@OARcorp.com>
191
192        PR 338/filesystem
193        * src/unixlibc.c: Side-effect of fixing reentrancy problem with
194        rtems_io_lookup_name() (API change).
195
1962003-02-03     Till Straumann  <strauman@slac.stanford.edu>
197
198        PR 339/filesystem
199        * src/chroot.c: Fix violation of FS node object copy semantics.
200
2012003-01-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
202
203        * Makefile.am: Eliminate OBJS.
204
2052003-01-10      Joel Sherrill <joel@OARcorp.com>
206
207        * include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to avoid
208        conflict with GNU/Linux header files.
209
2102003-01-03     Till Straumann  <strauman@slac.stanford.edu>
211
212        * ChangeLog, base_fs.c, getpwent.c, privateenv.c
213        Per PR303, Fix violation of node_access copy syemantics
214
2152002-12-26     Till Straumann  <strauman@slac.stanford.edu
216
217        * src/fchdir.c: PR302 fix violation of FS node object copy semantics.
218
2192002-12-06      Joel Sherrill <joel@OARcorp.com>
220
221        * src/malloc.c: Fixed code that incorrected did a disable dispatch
222        instead of locking and unlocking the allocator mutex.
223
2242002-12-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
225
226        * configure.ac: Add various checks to enhance portability.
227        * src/termios.c: Reflect changes to configure.ac.
228
2292002-12-02      Joel Sherrill <joel@OARcorp.com>
230
231        * include/rtems/libio.h: Internally use a union of an unsigned64
232        and major/minor device so we don't get into trouble shifting.
233        The h8300 seemed to be impossible to remove warnings otherwise.
234        Eventually the structure definition of a dev_t might be better anyway.
235        * include/sys/ioccom.h: Added casts to remove warnings on 16 bit
236        targets.
237
2382002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
240        * configure.ac: Cosmetical fixes.
241
2422002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
243
244        * configure.ac: Fix package name.
245
2462002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * configure.ac: Check for sys/cdefs.h, Add NEED_SYS_CDEFS_H.
249        Add check for CHAR_BIT.
250        * Makefile.am: Conditionally install sys/cdefs.h iff using newlib or
251        if the host does not provide sys/cdefs.h (Fixes Linux/posix).
252
2532002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * configure.ac: Remove -ansi -fasm.
256        Add checks to diagnose potential system header conflicts.
257        * Makefile.am: Unconditionally install sys/cdefs.h.
258
2592002-11-07      <strauman@slac.stanford.edu>
260
261        * src/mount.c: Per PR297, correct fs_mountme failure paths.
262
2632002-11-01      Joel Sherrill <joel@OARcorp.com>
264
265        * ChangeLog: Corrected.
266
2672002-10-30      Eric Norum <eric.norum@usask.ca>
268
269        * src/printk.c: Add vprintk function for kernel printing
270        from routines which have already obtained the va_list pointer.
271
2722002-10-31      Joel Sherrill <joel@OARcorp.com>
273
274        * src/mallocfreespace.c: Corrected sense of status check to
275        match change inside RTEMS.
276        * src/newlibc.c: Removed warning.
277
2782002-10-28      Joel Sherrill <joel@OARcorp.com>
279
280        * include/rtems/libio.h: Change rtems_filesystem_node_types_t from
281        enumeration to int to eliminate warnings when values are overridden.
282
2832002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
286
2872002-10-24      <strauman@slac.stanford.edu>
288
289        * src/eval.c: Per PR293, added freenode calls for evaluate
290          link failures.
291
2922002-10-23      <strauman@slac.stanford.edu>
293
294        * src/mount.c per PR290, add check for ops->node_type_h
295        * src/mknod.c per PR291, remove erroneous call to freenod
296
2972002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * .cvsignore: Reformat.
300        Add autom4te*cache.
301        Remove autom4te.cache.
302
3032002-10-02      Eric Norum <eric.norum@usask.ca>
304
305        * src/getpwent.c: Per PR283, reimplement to address reentrancy problems.
306        * src/getgrent.c: Removed as functionality is now just a wrapper for
307        common routines in src/getpwent.c.
308        * Makefile.am: Reflect file removal.
309
3102002-09-14      Joel Sherrill <joel@OARcorp.com>
311
312        * include/rtems/libio.h: Change rtems_filesystem_read_t and
313        rtems_filesystem_write_t to return ssize_t to match read(2)
314        and write(2) respectively.
315
3162002-09-14      Eric Norum <eric.norum@usask.ca>
317
318        * src/readdir_r.c: New file.
319        * Makefile.am: Reflect above.
320
3212002-08-12      Eric Norum <eric.norum@usask.ca>
322
323        * src/write.c (_write_r): Change prototype to match newlib's reent.h.
324
3252002-07-30      Joel Sherrill <joel@OARcorp.com>
326
327        * include/sys/utime.h: Removed as file is now part of the RTEMS
328        newlib support.
329        * Makefile.am: Reflect above.
330        * include/rtems/termiostypes.h: Avoid use of __P.
331
3322002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * Makefile.am: Use .$(OBJEXT) instead of .o.
335
3362002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Eliminate LIBNAME. Use AM_CPPFLAGS instead of
339        INCLUDES (Upcoming automake standard).
340
3412002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * configure.ac: RTEMS_TOP(../..).
344
3452002-07-01      Joel Sherrill <joel@OARcorp.com>
346
347        * src/__times.c: Corrected from previous attempt to cleanup.
348
3492002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * configure.ac: Remove RTEMS_PROJECT_ROOT.
352
3532002-06-28      Joel Sherrill <joel@OARcorp.com>
354
355        * src/__times.c: Cleaned up comments, return more information,
356        and eliminated the fatal error on clock not set since it cannot
357        occur.
358
3592002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
362        Add AC_PROG_RANLIB.
363
3642002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
365
366        * Makefile.am: Merge src/Makefile.am.
367        * configure.ac: Reflect changes above.
368        * src/Makefile.am: Remove.
369
3702002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
373        Use ../aclocal.
374        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
375
3762001-05-24      Joel Sherrill <joel@OARcorp.com>
377
378        * src/.cvsignore: New file.
379
Note: See TracBrowser for help on using the repository browser.