source: rtems/cpukit/libcsupport/ChangeLog @ aab4664d

4.104.114.84.95
Last change on this file since aab4664d was aab4664d, checked in by Joel Sherrill <joel.sherrill@…>, on 10/22/03 at 16:53:55

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: 12.4 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        * src/sync.c: Don't undef __STRICT_ANSI__.
29        Use struct _reent (struct reent doesn't exist)
30
312003-09-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
32
33        PR 486/rtems
34        * src/newlib.c: Unconditionally include <stdio.h>
35
362003-09-04      Joel Sherrill <joel@OARcorp.com>
37
38        * include/chain.h, include/clockdrv.h, include/console.h,
39        include/iosupp.h, include/rtc.h, include/spurious.h,
40        include/timerdrv.h, include/vmeintr.h, include/motorola/mc68230.h,
41        include/rtems/libcsupport.h, include/rtems/libio.h,
42        include/rtems/libio_.h, include/rtems/termiostypes.h,
43        include/sys/termios.h, include/zilog/z8036.h, include/zilog/z8530.h,
44        include/zilog/z8536.h, src/__brk.c, src/__gettod.c, src/__sbrk.c,
45        src/__times.c, src/access.c, src/base_fs.c, src/cfgetispeed.c,
46        src/cfgetospeed.c, src/cfsetispeed.c, src/cfsetospeed.c, src/chdir.c,
47        src/chmod.c, src/chown.c, src/chroot.c, src/close.c, src/ctermid.c,
48        src/dup.c, src/dup2.c, src/eval.c, src/fchdir.c, src/fchmod.c,
49        src/fcntl.c, src/fdatasync.c, src/fpathconf.c,
50        src/fs_null_handlers.c, src/fstat.c, src/fsync.c, src/ftruncate.c,
51        src/getdents.c, src/getpwent.c, src/hosterr.c, src/ioctl.c,
52        src/isatty.c, src/libio.c, src/libio_sockets.c, src/link.c,
53        src/lseek.c, src/lstat.c, src/malloc.c, src/mallocfreespace.c,
54        src/mkdir.c, src/mkfifo.c, src/mknod.c, src/mount.c, src/newlibc.c,
55        src/no_libc.c, src/no_posix.c, src/open.c, src/pathconf.c,
56        src/pipe.c, src/privateenv.c, src/read.c, src/readlink.c,
57        src/rewinddir.c, src/rmdir.c, src/seekdir.c, src/stat.c,
58        src/symlink.c, src/sync.c, src/tcdrain.c, src/tcflow.c,
59        src/tcflush.c, src/tcgetattr.c, src/tcgetprgrp.c, src/tcsendbreak.c,
60        src/tcsetattr.c, src/tcsetpgrp.c, src/telldir.c, src/termios.c,
61        src/termiosinitialize.c, src/truncate.c, src/umask.c, src/unixlibc.c,
62        src/unlink.c, src/unmount.c, src/utime.c, src/write.c: URL for
63        license changed.
64
652003-09-04      Joel Sherrill <joel@OARcorp.com>
66
67        PR 479/rtems_misc
68        * src/malloc.c: Per multiple standards realloc does not free the
69        original memory if the allocation of the requested larger block
70        fails.
71
722003-09-02      Joel Sherrill <joel@OARcorp.com>
73
74        * src/open.c: Fix typo.
75
762003-09-02      Joel Sherrill <joel@OARcorp.com>
77
78        * src/malloc.c: Remove test define left in.
79
802003-09-02      Ilya Alexeev <ilya@continuum.ru>
81
82        PR 472/filesystem
83        src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.
84
852003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
86
87        PR 449/rtems:
88        * src/getegid.c: New (Copied from ../posix/src).
89        * src/geteuid.c: New (Copied from ../posix/src).
90        * src/getgid.c: New (Copied from ../posix/src).
91        * src/getgroups.c: New (Copied from ../posix/src).
92        * src/getlogin.c: New (Copied from ../posix/src).
93        * src/getpgrp.c: New (Copied from ../posix/src).
94        * src/getpid.c: New (Copied from ../posix/src).
95        * src/getppid.c: New (Copied from ../posix/src).
96        * src/getuid.c: New (Copied from ../posix/src).
97        * src/setpgid.c: New (Copied from ../posix/src).
98        * src/setsid.c: New (Copied from ../posix/src).
99        * src/no_posix: Remove getpid and _getpid_r.
100        * Makefile.am: Reflect changes above.
101
1022003-08-14      Joel Sherrill <joel@OARcorp.com>
103
104        * Makefile.am: Add fileio to list of interactive tests.
105        * src/sync.c: New (Copied from ../posix/src). New file.
106
1072003-08-05      Till Strauman <strauman@slac.stanford.edu>
108
109        PR 442/filesystem
110        * src/open.c: file never closed if ftruncate() fails in open()
111
1122003-07-08      Joel Sherrill <joel@OARcorp.com>
113
114        PR 419/rtems
115        * src/termios.c: Removed warning.
116
1172003-07-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
118
119        * configure.ac: Remove (Merged-in into ../configure.ac)
120        * Makefile.am: DOC_FILES = src/TODO src/CASES,
121        Reflect having merged configure.ac into ../configure.ac.
122        * src/config.h: New.
123
1242003-07-02      Chris Johns <cjohns@cybertec.com.au>
125
126        * include/rtems/libio.h, src/termios.c: Patch by Chris Johns
127        <cjohns@cybertec.com.au> adding the rtems_termios_bufsize call.
128       
1292003-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
130
131        * Makefile.am: Conditionally install stdint.h/inttypes.h.
132        * configure.ac: Check for system-stdint.h/inttypes.h.
133
1342003-05-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
135
136        PR 409:
137        * include/stdint.h: Include rtems/stdint.h
138
1392003-04-17      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
140
141        PR 399/rtems_misc
142        * src/termios.c: In canonical mode, when input is present in the
143        input buffer that contains an EOL character and some following
144        characters, a read call read data behind the EOL character, although
145        it should stop reading with the EOL character.
146
1472003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
148
149        * src/no_posix.c: include <reent.h> instead of <sys/reent.h>
150
1512003-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
152
153        PR 389/rtems
154        * src/no_posix.c: Correct _kill_r() prototype and make it conditional
155        on newlib.
156
1572003-04-03      Eri Valette <eric.valette@free.fr>
158
159        PR 381/core
160        * src/newlibc.c: Switch from using _REENT_INIT to _REEINT_INIT_PTR
161        to fix strange run-time problem where EIP was corrupted on pc386 BSP.
162
1632003-03-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
164
165        * configure.ac: AC_CHECK_FUNCS(strlcpy strlcat).
166        * src/strlcat.c: New (extracted from pppd/utils.c).
167        * src/strlcpy.c: New (extracted from pppd/utils.c).
168        * Makefile.am: Add BSD_C_FILES, strlcat.c, strlcpy.c.
169
1702003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
171
172        * configure.ac: Remove AC_CONFIG_AUX_DIR.
173
1742003-02-20      Wolfram Wadepohl <W.Wadepohl@indumat.de>
175
176        PR 357/rtems_misc
177        * src/termios.c (rtems_termios_open):  Fixed code the incorrectly
178        checked that the wrong pointer during allocation was NULL.
179
1802003-02-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
181
182        * src/privateenv.c: Fix prototype for free_user_env.
183
1842003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
185
186        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
187
1882003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
189
190        * configure.ac: AC_PREREQ(2.57).
191
1922003-02-06      Joel Sherrill <joel@OARcorp.com>
193
194        * include/sys/ioccom.h: Include <sys/types.h> not <machine/types.h> so
195        Linux port builds.
196
1972003-02-05     Till Straumann  <strauman@slac.stanford.edu>
198
199        PR 340/filesystem
200        * src/fcntl.c: Add missing _fcntl_r assumed to exist by newlib.
201
2022003-02-05      Joel Sherrill <joel@OARcorp.com>
203
204        * include/sys/ioccom.h: Fix so not using internal RTEMS types in libc
205        code.
206
2072003-02-03      Joel Sherrill <joel@OARcorp.com>
208
209        PR 338/filesystem
210        * src/unixlibc.c: Side-effect of fixing reentrancy problem with
211        rtems_io_lookup_name() (API change).
212
2132003-02-03     Till Straumann  <strauman@slac.stanford.edu>
214
215        PR 339/filesystem
216        * src/chroot.c: Fix violation of FS node object copy semantics.
217
2182003-01-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * Makefile.am: Eliminate OBJS.
221
2222003-01-10      Joel Sherrill <joel@OARcorp.com>
223
224        * include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to avoid
225        conflict with GNU/Linux header files.
226
2272003-01-03     Till Straumann  <strauman@slac.stanford.edu>
228
229        * ChangeLog, base_fs.c, getpwent.c, privateenv.c
230        Per PR303, Fix violation of node_access copy syemantics
231
2322002-12-26     Till Straumann  <strauman@slac.stanford.edu
233
234        * src/fchdir.c: PR302 fix violation of FS node object copy semantics.
235
2362002-12-06      Joel Sherrill <joel@OARcorp.com>
237
238        * src/malloc.c: Fixed code that incorrected did a disable dispatch
239        instead of locking and unlocking the allocator mutex.
240
2412002-12-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * configure.ac: Add various checks to enhance portability.
244        * src/termios.c: Reflect changes to configure.ac.
245
2462002-12-02      Joel Sherrill <joel@OARcorp.com>
247
248        * include/rtems/libio.h: Internally use a union of an unsigned64
249        and major/minor device so we don't get into trouble shifting.
250        The h8300 seemed to be impossible to remove warnings otherwise.
251        Eventually the structure definition of a dev_t might be better anyway.
252        * include/sys/ioccom.h: Added casts to remove warnings on 16 bit
253        targets.
254
2552002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * configure.ac: Cosmetical fixes.
258
2592002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * configure.ac: Fix package name.
262
2632002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * configure.ac: Check for sys/cdefs.h, Add NEED_SYS_CDEFS_H.
266        Add check for CHAR_BIT.
267        * Makefile.am: Conditionally install sys/cdefs.h iff using newlib or
268        if the host does not provide sys/cdefs.h (Fixes Linux/posix).
269
2702002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * configure.ac: Remove -ansi -fasm.
273        Add checks to diagnose potential system header conflicts.
274        * Makefile.am: Unconditionally install sys/cdefs.h.
275
2762002-11-07      <strauman@slac.stanford.edu>
277
278        * src/mount.c: Per PR297, correct fs_mountme failure paths.
279
2802002-11-01      Joel Sherrill <joel@OARcorp.com>
281
282        * ChangeLog: Corrected.
283
2842002-10-30      Eric Norum <eric.norum@usask.ca>
285
286        * src/printk.c: Add vprintk function for kernel printing
287        from routines which have already obtained the va_list pointer.
288
2892002-10-31      Joel Sherrill <joel@OARcorp.com>
290
291        * src/mallocfreespace.c: Corrected sense of status check to
292        match change inside RTEMS.
293        * src/newlibc.c: Removed warning.
294
2952002-10-28      Joel Sherrill <joel@OARcorp.com>
296
297        * include/rtems/libio.h: Change rtems_filesystem_node_types_t from
298        enumeration to int to eliminate warnings when values are overridden.
299
3002002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
303
3042002-10-24      <strauman@slac.stanford.edu>
305
306        * src/eval.c: Per PR293, added freenode calls for evaluate
307          link failures.
308
3092002-10-23      <strauman@slac.stanford.edu>
310
311        * src/mount.c per PR290, add check for ops->node_type_h
312        * src/mknod.c per PR291, remove erroneous call to freenod
313
3142002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
315
316        * .cvsignore: Reformat.
317        Add autom4te*cache.
318        Remove autom4te.cache.
319
3202002-10-02      Eric Norum <eric.norum@usask.ca>
321
322        * src/getpwent.c: Per PR283, reimplement to address reentrancy problems.
323        * src/getgrent.c: Removed as functionality is now just a wrapper for
324        common routines in src/getpwent.c.
325        * Makefile.am: Reflect file removal.
326
3272002-09-14      Joel Sherrill <joel@OARcorp.com>
328
329        * include/rtems/libio.h: Change rtems_filesystem_read_t and
330        rtems_filesystem_write_t to return ssize_t to match read(2)
331        and write(2) respectively.
332
3332002-09-14      Eric Norum <eric.norum@usask.ca>
334
335        * src/readdir_r.c: New file.
336        * Makefile.am: Reflect above.
337
3382002-08-12      Eric Norum <eric.norum@usask.ca>
339
340        * src/write.c (_write_r): Change prototype to match newlib's reent.h.
341
3422002-07-30      Joel Sherrill <joel@OARcorp.com>
343
344        * include/sys/utime.h: Removed as file is now part of the RTEMS
345        newlib support.
346        * Makefile.am: Reflect above.
347        * include/rtems/termiostypes.h: Avoid use of __P.
348
3492002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * Makefile.am: Use .$(OBJEXT) instead of .o.
352
3532002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * Makefile.am: Eliminate LIBNAME. Use AM_CPPFLAGS instead of
356        INCLUDES (Upcoming automake standard).
357
3582002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * configure.ac: RTEMS_TOP(../..).
361
3622002-07-01      Joel Sherrill <joel@OARcorp.com>
363
364        * src/__times.c: Corrected from previous attempt to cleanup.
365
3662002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * configure.ac: Remove RTEMS_PROJECT_ROOT.
369
3702002-06-28      Joel Sherrill <joel@OARcorp.com>
371
372        * src/__times.c: Cleaned up comments, return more information,
373        and eliminated the fatal error on clock not set since it cannot
374        occur.
375
3762002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
379        Add AC_PROG_RANLIB.
380
3812002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * Makefile.am: Merge src/Makefile.am.
384        * configure.ac: Reflect changes above.
385        * src/Makefile.am: Remove.
386
3872002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
390        Use ../aclocal.
391        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
392
3932001-05-24      Joel Sherrill <joel@OARcorp.com>
394
395        * src/.cvsignore: New file.
396
Note: See TracBrowser for help on using the repository browser.