source: rtems/cpukit/libcsupport/ChangeLog @ 8d3e9254

4.104.114.84.95
Last change on this file since 8d3e9254 was 2a09fb6e, checked in by Joel Sherrill <joel.sherrill@…>, on 02/06/03 at 15:01:59

2003-02-06 Joel Sherrill <joel@…>

  • include/sys/ioccom.h: Include <sys/types.h> not <machine/types.h> so Linux port builds.
  • Property mode set to 100644
File size: 5.9 KB
Line 
12003-02-06      Joel Sherrill <joel@OARcorp.com>
2
3        * include/sys/ioccom.h: Include <sys/types.h> not <machine/types.h> so
4        Linux port builds.
5
62003-02-05     Till Straumann  <strauman@slac.stanford.edu>
7
8        PR 340/filesystem
9        * src/fcntl.c: Add missing _fcntl_r assumed to exist by newlib.
10
112003-02-05      Joel Sherrill <joel@OARcorp.com>
12
13        * include/sys/ioccom.h: Fix so not using internal RTEMS types in libc
14        code.
15
162003-02-03      Joel Sherrill <joel@OARcorp.com>
17
18        PR 338/filesystem
19        * src/unixlibc.c: Side-effect of fixing reentrancy problem with
20        rtems_io_lookup_name() (API change).
21
222003-02-03     Till Straumann  <strauman@slac.stanford.edu>
23
24        PR 339/filesystem
25        * src/chroot.c: Fix violation of FS node object copy semantics.
26
272003-01-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
28
29        * Makefile.am: Eliminate OBJS.
30
312003-01-10      Joel Sherrill <joel@OARcorp.com>
32
33        * include/rtems/libio.h: Rename __dev_t to __rtems_dev_t to avoid
34        conflict with GNU/Linux header files.
35
362003-01-03     Till Straumann  <strauman@slac.stanford.edu>
37
38        * ChangeLog, base_fs.c, getpwent.c, privateenv.c
39        Per PR303, Fix violation of node_access copy syemantics
40
412002-12-26     Till Straumann  <strauman@slac.stanford.edu
42
43        * src/fchdir.c: PR302 fix violation of FS node object copy semantics.
44
452002-12-06      Joel Sherrill <joel@OARcorp.com>
46
47        * src/malloc.c: Fixed code that incorrected did a disable dispatch
48        instead of locking and unlocking the allocator mutex.
49
502002-12-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
51
52        * configure.ac: Add various checks to enhance portability.
53        * src/termios.c: Reflect changes to configure.ac.
54
552002-12-02      Joel Sherrill <joel@OARcorp.com>
56
57        * include/rtems/libio.h: Internally use a union of an unsigned64
58        and major/minor device so we don't get into trouble shifting.
59        The h8300 seemed to be impossible to remove warnings otherwise.
60        Eventually the structure definition of a dev_t might be better anyway.
61        * include/sys/ioccom.h: Added casts to remove warnings on 16 bit
62        targets.
63
642002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
65
66        * configure.ac: Cosmetical fixes.
67
682002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
69
70        * configure.ac: Fix package name.
71
722002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
73
74        * configure.ac: Check for sys/cdefs.h, Add NEED_SYS_CDEFS_H.
75        Add check for CHAR_BIT.
76        * Makefile.am: Conditionally install sys/cdefs.h iff using newlib or
77        if the host does not provide sys/cdefs.h (Fixes Linux/posix).
78
792002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
80
81        * configure.ac: Remove -ansi -fasm.
82        Add checks to diagnose potential system header conflicts.
83        * Makefile.am: Unconditionally install sys/cdefs.h.
84
852002-11-07      <strauman@slac.stanford.edu>
86
87        * src/mount.c: Per PR297, correct fs_mountme failure paths.
88
892002-11-01      Joel Sherrill <joel@OARcorp.com>
90
91        * ChangeLog: Corrected.
92
932002-10-30      Eric Norum <eric.norum@usask.ca>
94
95        * src/printk.c: Add vprintk function for kernel printing
96        from routines which have already obtained the va_list pointer.
97
982002-10-31      Joel Sherrill <joel@OARcorp.com>
99
100        * src/mallocfreespace.c: Corrected sense of status check to
101        match change inside RTEMS.
102        * src/newlibc.c: Removed warning.
103
1042002-10-28      Joel Sherrill <joel@OARcorp.com>
105
106        * include/rtems/libio.h: Change rtems_filesystem_node_types_t from
107        enumeration to int to eliminate warnings when values are overridden.
108
1092002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
110
111        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
112
1132002-10-24      <strauman@slac.stanford.edu>
114
115        * src/eval.c: Per PR293, added freenode calls for evaluate
116          link failures.
117
1182002-10-23      <strauman@slac.stanford.edu>
119
120        * src/mount.c per PR290, add check for ops->node_type_h
121        * src/mknod.c per PR291, remove erroneous call to freenod
122
1232002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
124
125        * .cvsignore: Reformat.
126        Add autom4te*cache.
127        Remove autom4te.cache.
128
1292002-10-02      Eric Norum <eric.norum@usask.ca>
130
131        * src/getpwent.c: Per PR283, reimplement to address reentrancy problems.
132        * src/getgrent.c: Removed as functionality is now just a wrapper for
133        common routines in src/getpwent.c.
134        * Makefile.am: Reflect file removal.
135
1362002-09-14      Joel Sherrill <joel@OARcorp.com>
137
138        * include/rtems/libio.h: Change rtems_filesystem_read_t and
139        rtems_filesystem_write_t to return ssize_t to match read(2)
140        and write(2) respectively.
141
1422002-09-14      Eric Norum <eric.norum@usask.ca>
143
144        * src/readdir_r.c: New file.
145        * Makefile.am: Reflect above.
146
1472002-08-12      Eric Norum <eric.norum@usask.ca>
148
149        * src/write.c (_write_r): Change prototype to match newlib's reent.h.
150
1512002-07-30      Joel Sherrill <joel@OARcorp.com>
152
153        * include/sys/utime.h: Removed as file is now part of the RTEMS
154        newlib support.
155        * Makefile.am: Reflect above.
156        * include/rtems/termiostypes.h: Avoid use of __P.
157
1582002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
159
160        * Makefile.am: Use .$(OBJEXT) instead of .o.
161
1622002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
163
164        * Makefile.am: Eliminate LIBNAME. Use AM_CPPFLAGS instead of
165        INCLUDES (Upcoming automake standard).
166
1672002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
168
169        * configure.ac: RTEMS_TOP(../..).
170
1712002-07-01      Joel Sherrill <joel@OARcorp.com>
172
173        * src/__times.c: Corrected from previous attempt to cleanup.
174
1752002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
176
177        * configure.ac: Remove RTEMS_PROJECT_ROOT.
178
1792002-06-28      Joel Sherrill <joel@OARcorp.com>
180
181        * src/__times.c: Cleaned up comments, return more information,
182        and eliminated the fatal error on clock not set since it cannot
183        occur.
184
1852002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
186
187        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
188        Add AC_PROG_RANLIB.
189
1902002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
191
192        * Makefile.am: Merge src/Makefile.am.
193        * configure.ac: Reflect changes above.
194        * src/Makefile.am: Remove.
195
1962002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
197
198        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
199        Use ../aclocal.
200        * src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
201
2022001-05-24      Joel Sherrill <joel@OARcorp.com>
203
204        * src/.cvsignore: New file.
205
Note: See TracBrowser for help on using the repository browser.