source: rtems/cpukit/libcsupport/ChangeLog @ c11ca814

Last change on this file since c11ca814 was c11ca814, checked in by Joel Sherrill <joel.sherrill@…>, on 11/26/03 at 17:51:00

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

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.
  • Property mode set to 100644
File size: 12.4 KB
Line 
12003-11-26      Joel Sherrill <joel@OARcorp.com>
2
3        PR 523/filesystem
4        * src/malloc.c: Make malloc family safer for use from ISRs and
5        dispatching critical sections. If in a critical section while doing
6        a free(), then the free is deferred until the next malloc() attempt.
7
82003-11-25      Jennifer Averett <jennifer@OARcorp.com>
9
10        PR 519/filesystem
11        * include/rtems/libio_.h, src/eval.c, src/rmdir.c, src/unlink.c:
12        Check write permissions in parent directory for file or
13        directory delete
14
152003-10-22      Joel Sherrill <joel@OARcorp.com>
16
17        PR 511/filesystem
18        * src/malloc.c: Add deferred free and protect against C Program Heap
19        operations while in a dispatch disable critical section or ISR.
20
212003-10-02      Phil Torre <ptorre@zetron.com>
22
23        PR 504/rtems
24        * src/newlibc.c: Fix memory allocation of libc extension so it is
25        dispatch disabled safe See PR for detailed explanation.
26
272003-09-26      Till Strauman <strauman@slac.stanford.edu>
28
29        PR 498/rtems
30        * src/printk.c: RTEMS printk() does not support the %i format which is
31        used by a lot of driver/BSP etc. code. The trivial patch allows %i/%I
32        as an alias for %d/%D.
33
342003-09-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
35
36        PR 489/rtems
37        * src/newlibc.c: Reflect struct Thread_Control_struct.libc_reent
38        having changed from void * to struct _reent*.
39
402003-09-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
41
42        PR 486/rtems
43        * src/newlib.c: Unconditionally include <stdio.h>
44
452003-09-04      Joel Sherrill <joel@OARcorp.com>
46
47        * include/chain.h, include/clockdrv.h, include/console.h,
48        include/iosupp.h, include/rtc.h, include/spurious.h,
49        include/timerdrv.h, include/vmeintr.h, include/motorola/mc68230.h,
50        include/rtems/libcsupport.h, include/rtems/libio.h,
51        include/rtems/libio_.h, include/rtems/termiostypes.h,
52        include/sys/termios.h, include/zilog/z8036.h, include/zilog/z8530.h,
53        include/zilog/z8536.h, src/__brk.c, src/__gettod.c, src/__sbrk.c,
54        src/__times.c, src/access.c, src/base_fs.c, src/cfgetispeed.c,
55        src/cfgetospeed.c, src/cfsetispeed.c, src/cfsetospeed.c, src/chdir.c,
56        src/chmod.c, src/chown.c, src/chroot.c, src/close.c, src/ctermid.c,
57        src/dup.c, src/dup2.c, src/eval.c, src/fchdir.c, src/fchmod.c,
58        src/fcntl.c, src/fdatasync.c, src/fpathconf.c,
59        src/fs_null_handlers.c, src/fstat.c, src/fsync.c, src/ftruncate.c,
60        src/getdents.c, src/getpwent.c, src/hosterr.c, src/ioctl.c,
61        src/isatty.c, src/libio.c, src/libio_sockets.c, src/link.c,
62        src/lseek.c, src/lstat.c, src/malloc.c, src/mallocfreespace.c,
63        src/mkdir.c, src/mkfifo.c, src/mknod.c, src/mount.c, src/newlibc.c,
64        src/no_libc.c, src/no_posix.c, src/open.c, src/pathconf.c,
65        src/pipe.c, src/privateenv.c, src/read.c, src/readlink.c,
66        src/rewinddir.c, src/rmdir.c, src/seekdir.c, src/stat.c,
67        src/symlink.c, src/tcdrain.c, src/tcflow.c, src/tcflush.c,
68        src/tcgetattr.c, src/tcgetprgrp.c, src/tcsendbreak.c,
69        src/tcsetattr.c, src/tcsetpgrp.c, src/telldir.c, src/termios.c,
70        src/termiosinitialize.c, src/truncate.c, src/umask.c, src/unixlibc.c,
71        src/unlink.c, src/unmount.c, src/utime.c, src/write.c: URL for
72        license changed.
73
742003-09-04      Joel Sherrill <joel@OARcorp.com>
75
76        PR 479/rtems_misc
77        * src/malloc.c: Per multiple standards realloc does not free the
78        original memory if the allocation of the requested larger block
79        fails.
80
812003-09-02      Joel Sherrill <joel@OARcorp.com>
82
83        * src/open.c: Fix typo.
84
852003-09-02      Ilya Alexeev <ilya@continuum.ru>
86
87        PR 472/filesystem
88        src/malloc.c: Need to include apimutex.h when MALLOC_STATS is defined.
89
902003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
91
92        PR 449/rtems:
93        * src/getegid.c: New (Copied from ../posix/src).
94        * src/geteuid.c: New (Copied from ../posix/src).
95        * src/getgid.c: New (Copied from ../posix/src).
96        * src/getgroups.c: New (Copied from ../posix/src).
97        * src/getlogin.c: New (Copied from ../posix/src).
98        * src/getpgrp.c: New (Copied from ../posix/src).
99        * src/getpid.c: New (Copied from ../posix/src).
100        * src/getppid.c: New (Copied from ../posix/src).
101        * src/getuid.c: New (Copied from ../posix/src).
102        * src/setpgid.c: New (Copied from ../posix/src).
103        * src/setsid.c: New (Copied from ../posix/src).
104        * src/no_posix: Remove getpid and _getpid_r.
105        * Makefile.am: Reflect changes above.
106
1072003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
108
109        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
110
1112003-08-05      Till Strauman <strauman@slac.stanford.edu>
112
113        PR 442/filesystem
114        * src/open.c: file never closed if ftruncate() fails in open()
115
1162003-07-08      Joel Sherrill <joel@OARcorp.com>
117
118        PR 419/rtems
119        * src/termios.c: Removed warning.
120
1212003-07-02      Chris Johns <cjohns@cybertec.com.au>
122
123        * include/rtems/libio.h, src/termios.c: Patch by Chris Johns
124        <cjohns@cybertec.com.au> adding the rtems_termios_bufsize call.
125       
1262003-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
127
128        * Makefile.am: Conditionally install stdint.h/inttypes.h.
129        * configure.ac: Check for system-stdint.h/inttypes.h.
130
1312003-05-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
132
133        PR 409:
134        * include/stdint.h: Include rtems/stdint.h
135
1362003-04-17      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
137
138        PR 399/rtems_misc
139        * src/termios.c: In canonical mode, when input is present in the
140        input buffer that contains an EOL character and some following
141        characters, a read call read data behind the EOL character, although
142        it should stop reading with the EOL character.
143
1442003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
145
146        * src/no_posix.c: include <reent.h> instead of <sys/reent.h>
147
1482003-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
149
150        PR 389/rtems
151        * src/no_posix.c: Correct _kill_r() prototype and make it conditional
152        on newlib.
153
1542003-04-03      Eri Valette <eric.valette@free.fr>
155
156        PR 381/core
157        * src/newlibc.c: Switch from using _REENT_INIT to _REEINT_INIT_PTR
158        to fix strange run-time problem where EIP was corrupted on pc386 BSP.
159
1602003-03-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
161
162        * configure.ac: AC_CHECK_FUNCS(strlcpy strlcat).
163        * src/strlcat.c: New (extracted from pppd/utils.c).
164        * src/strlcpy.c: New (extracted from pppd/utils.c).
165        * Makefile.am: Add BSD_C_FILES, strlcat.c, strlcpy.c.
166
1672003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
168
169        * configure.ac: Remove AC_CONFIG_AUX_DIR.
170
1712003-02-20      Wolfram Wadepohl <W.Wadepohl@indumat.de>
172
173        PR 357/rtems_misc
174        * src/termios.c (rtems_termios_open):  Fixed code the incorrectly
175        checked that the wrong pointer during allocation was NULL.
176
1772003-02-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
178
179        * src/privateenv.c: Fix prototype for free_user_env.
180
1812003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
182
183        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
184
1852003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
186
187        * configure.ac: AC_PREREQ(2.57).
188
1892003-02-06      Joel Sherrill <joel@OARcorp.com>
190
191        * include/sys/ioccom.h: Include <sys/types.h> not <machine/types.h> so
192        Linux port builds.
193
1942003-02-05     Till Straumann  <strauman@slac.stanford.edu>
195
196        PR 340/filesystem
197        * src/fcntl.c: Add missing _fcntl_r assumed to exist by newlib.
198
1992003-02-05      Joel Sherrill <joel@OARcorp.com>
200
201        * include/sys/ioccom.h: Fix so not using internal RTEMS types in libc
202        code.
203
2042003-02-03      Joel Sherrill <joel@OARcorp.com>
205
206        PR 338/filesystem
207        * src/unixlibc.c: Side-effect of fixing reentrancy problem with
208        rtems_io_lookup_name() (API change).
209
2102003-02-03     Till Straumann  <strauman@slac.stanford.edu>
211
212        PR 339/filesystem
213        * src/chroot.c: Fix violation of FS node object copy semantics.
214
2152003-01-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
216
217        * Makefile.am: Eliminate OBJS.
218
2192003-01-10      Joel Sherrill <joel@OARcorp.com>
220
221        * include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to avoid
222        conflict with GNU/Linux header files.
223
2242003-01-03     Till Straumann  <strauman@slac.stanford.edu>
225
226        * ChangeLog, base_fs.c, getpwent.c, privateenv.c
227        Per PR303, Fix violation of node_access copy syemantics
228
2292002-12-26     Till Straumann  <strauman@slac.stanford.edu
230
231        * src/fchdir.c: PR302 fix violation of FS node object copy semantics.
232
2332002-12-06      Joel Sherrill <joel@OARcorp.com>
234
235        * src/malloc.c: Fixed code that incorrected did a disable dispatch
236        instead of locking and unlocking the allocator mutex.
237
2382002-12-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
240        * configure.ac: Add various checks to enhance portability.
241        * src/termios.c: Reflect changes to configure.ac.
242
2432002-12-02      Joel Sherrill <joel@OARcorp.com>
244
245        * include/rtems/libio.h: Internally use a union of an unsigned64
246        and major/minor device so we don't get into trouble shifting.
247        The h8300 seemed to be impossible to remove warnings otherwise.
248        Eventually the structure definition of a dev_t might be better anyway.
249        * include/sys/ioccom.h: Added casts to remove warnings on 16 bit
250        targets.
251
2522002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
253
254        * configure.ac: Cosmetical fixes.
255
2562002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
257
258        * configure.ac: Fix package name.
259
2602002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * configure.ac: Check for sys/cdefs.h, Add NEED_SYS_CDEFS_H.
263        Add check for CHAR_BIT.
264        * Makefile.am: Conditionally install sys/cdefs.h iff using newlib or
265        if the host does not provide sys/cdefs.h (Fixes Linux/posix).
266
2672002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * configure.ac: Remove -ansi -fasm.
270        Add checks to diagnose potential system header conflicts.
271        * Makefile.am: Unconditionally install sys/cdefs.h.
272
2732002-11-07      <strauman@slac.stanford.edu>
274
275        * src/mount.c: Per PR297, correct fs_mountme failure paths.
276
2772002-11-01      Joel Sherrill <joel@OARcorp.com>
278
279        * ChangeLog: Corrected.
280
2812002-10-30      Eric Norum <eric.norum@usask.ca>
282
283        * src/printk.c: Add vprintk function for kernel printing
284        from routines which have already obtained the va_list pointer.
285
2862002-10-31      Joel Sherrill <joel@OARcorp.com>
287
288        * src/mallocfreespace.c: Corrected sense of status check to
289        match change inside RTEMS.
290        * src/newlibc.c: Removed warning.
291
2922002-10-28      Joel Sherrill <joel@OARcorp.com>
293
294        * include/rtems/libio.h: Change rtems_filesystem_node_types_t from
295        enumeration to int to eliminate warnings when values are overridden.
296
2972002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
300
3012002-10-24      <strauman@slac.stanford.edu>
302
303        * src/eval.c: Per PR293, added freenode calls for evaluate
304          link failures.
305
3062002-10-23      <strauman@slac.stanford.edu>
307
308        * src/mount.c per PR290, add check for ops->node_type_h
309        * src/mknod.c per PR291, remove erroneous call to freenod
310
3112002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        * .cvsignore: Reformat.
314        Add autom4te*cache.
315        Remove autom4te.cache.
316
3172002-10-02      Eric Norum <eric.norum@usask.ca>
318
319        * src/getpwent.c: Per PR283, reimplement to address reentrancy problems.
320        * src/getgrent.c: Removed as functionality is now just a wrapper for
321        common routines in src/getpwent.c.
322        * Makefile.am: Reflect file removal.
323
3242002-09-14      Joel Sherrill <joel@OARcorp.com>
325
326        * include/rtems/libio.h: Change rtems_filesystem_read_t and
327        rtems_filesystem_write_t to return ssize_t to match read(2)
328        and write(2) respectively.
329
3302002-09-14      Eric Norum <eric.norum@usask.ca>
331
332        * src/readdir_r.c: New file.
333        * Makefile.am: Reflect above.
334
3352002-08-12      Eric Norum <eric.norum@usask.ca>
336
337        * src/write.c (_write_r): Change prototype to match newlib's reent.h.
338
3392002-07-30      Joel Sherrill <joel@OARcorp.com>
340
341        * include/sys/utime.h: Removed as file is now part of the RTEMS
342        newlib support.
343        * Makefile.am: Reflect above.
344        * include/rtems/termiostypes.h: Avoid use of __P.
345
3462002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * Makefile.am: Use .$(OBJEXT) instead of .o.
349
3502002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * Makefile.am: Eliminate LIBNAME. Use AM_CPPFLAGS instead of
353        INCLUDES (Upcoming automake standard).
354
3552002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * configure.ac: RTEMS_TOP(../..).
358
3592002-07-01      Joel Sherrill <joel@OARcorp.com>
360
361        * src/__times.c: Corrected from previous attempt to cleanup.
362
3632002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        * configure.ac: Remove RTEMS_PROJECT_ROOT.
366
3672002-06-28      Joel Sherrill <joel@OARcorp.com>
368
369        * src/__times.c: Cleaned up comments, return more information,
370        and eliminated the fatal error on clock not set since it cannot
371        occur.
372
3732002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
376        Add AC_PROG_RANLIB.
377
3782002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
379
380        * Makefile.am: Merge src/Makefile.am.
381        * configure.ac: Reflect changes above.
382        * src/Makefile.am: Remove.
383
3842002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
387        Use ../aclocal.
388        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
389
3902001-05-24      Joel Sherrill <joel@OARcorp.com>
391
392        * src/.cvsignore: New file.
393
Note: See TracBrowser for help on using the repository browser.