source: rtems/c/src/lib/ChangeLog @ b7ed82f

4.104.114.84.95
Last change on this file since b7ed82f was 7b0001f7, checked in by Joel Sherrill <joel.sherrill@…>, on 10/25/00 at 16:56:11

2000-10-24 Joel Sherrill <joel@…>

  • libc/ioman.c: Moved to libfs.
  • libc/Makefile.am: Removed ioman.c as part of moving it to libfs.
  • libc/base_fs.c: Removed include of imfs.h and reworded comment to avoid being IMFS specific.
  • libc/libio.h: Removed prototype of IMFS_ops since it should not be in this file.
  • libc/mount.c: Removed IMFS specific configuration information.
  • libc/unmount.c: Removed include of imfs.h and reworded comment to avoid being IMFS specific.
  • Property mode set to 100644
File size: 3.8 KB
Line 
1   
22000-10-24      Joel Sherrill <joel@OARcorp.com>
3
4        * libc/ioman.c: Moved to libfs.
5        * libc/Makefile.am: Removed ioman.c as part of moving it to libfs.
6        * libc/base_fs.c: Removed include of imfs.h and reworded comment
7        to avoid being IMFS specific.
8        * libc/libio.h: Removed prototype of IMFS_ops since it should
9        not be in this file.
10        * libc/mount.c: Removed IMFS specific configuration information.
11        * libc/unmount.c: Removed include of imfs.h and reworded comment
12        to avoid being IMFS specific.
13
142000-10-18      Chris Johns <ccj@acm.org>
15
16        * libfs created.
17        * libc/deviceio.c, libc/imfs_getchild.c, libc/imfs_readlink.c,
18        libc/imfs.h, libc/imfs_gtkn.c, libc/imfs_rmnod.c, libc/imfs_chown.c,
19        libc/imfs_handlers_device.c, libc/imfs_stat.c, libc/imfs_creat.c,
20        libc/imfs_handlers_directory.c, libc/imfs_symlink.c, libc/imfs_debug.c,
21        libc/imfs_handlers_link.c, libc/imfs_unixstub.c, libc/imfs_directory.c,
22        libc/imfs_handlers_memfile.c, libc/imfs_unlink.c, libc/imfs_eval.c,
23        libc/imfs_init.c, libc/imfs_unmount.c, libc/imfs_fchmod.c,
24        libc/imfs_initsupp.c, libc/imfs_utime.c, libc/imfs_fcntl.c,
25        libc/imfs_link.c, libc/memfile.c, libc/imfs_fdatasync.c,
26        libc/imfs_mknod.c, libc/miniimfs_init.c, libc/imfs_free.c,
27        libc/imfs_mount.c, libc/imfs_fsunmount.c, libc/imfs_ntype.c:
28        Moved to libfs/src/imfs.
29        * Makefile.am: Modified to reflect above.
30
312000-10-18      Joel Sherrill <joel@OARcorp.com>
32
33        * libc/Makefile.am: Added mallocfreespace.c.
34        * libc/mallocfreespace.c: New file based on work by Nick Simon
35        <Nick.SIMON@syntegra.bt.co.uk> which he included in malloc.c.
36        * libc/libcsupport.h: Added prototype for malloc_free_space().
37
382000-10-18      Joel Sherrill <joel@OARcorp.com>
39
40        * libc/fcntl.c: Do not require every filesystem to have an fcntl()
41        handler.  Most fcntl() operations can be performed with no
42        filesystem support.
43        * ChangeLog: Corrected comment.
44
452000-09-28      Joel Sherrill <joel@OARcorp.com>
46
47        * libc/libio.h (rtems_filesystem_file_handlers_r,
48        rtems_filesystem_operations_table): Added _h to all structure
49        fields to indicate they are "handlers".
50        * libc/libio_.h, libc/chdir.c, libc/chmod.c, libc/chown.c,
51        libc/close.c, libc/eval.c, libc/fchdir.c, libc/fchmod.c,
52        libc/fcntl.c, libc/fdatasync.c, libc/fstat.c, libc/fsync.c,
53        libc/ftruncate.c, libc/getdents.c, libc/imfs_eval.c,
54        libc/imfs_unlink.c, libc/ioctl.c, libc/ioman.c, libc/link.c,
55        libc/lseek.c, libc/mknod.c, libc/mount.c, libc/open.c, libc/read.c,
56        libc/readlink.c, libc/rmdir.c, libc/stat.c, libc/symlink.c,
57        libc/unlink.c, libc/unmount.c, libc/utime.c, libc/write.c:
58        Modified to reflect above name change.
59
602000-09-22      Joel Sherrill <joel@OARcorp.com>
61
62        * libc/newlibc.c: Removed _A29K specific ifdef.
63
642000-09-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
65
66        * configure.in: Cleanup comments.
67
682000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
69
70        * libc/Makefile.am: Include compile.am
71
722000-09-05      Joel Sherrill <joel@OARcorp.com>
73
74        * libio.c: Added O_NONBLOCK to list of flags.
75
762000-08-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
77
78        * configure.in: Remove libcpu and libbsp
79        * Makefile.am: Remove libcpu and libbsp
80
812000-08-25      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * libc/fs_null_handlers.c: Added missing rmnod entry.
84
852000-08-25      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * libc/isatty.c, libc/imfs_handlers_directory.c, libc/creat.c,
88        libc/imfs_directory.c: Fixed style issues.
89
902000-08-11  Chris Johns <ccj@acm.org>
91
92        * libc/chmod.c: Return ENOTSUP if filesystem does not have handler.
93        * libc/eval.c: Ditto.
94        * libc/fcntl.c: Ditto.
95        * libc/fsync.c: Ditto.
96        * libc/ioctl.c: Ditto.
97        * libc/ioman.c: Ditto.
98        * libc/link.c: Ditto.
99        * libc/mknod.c: Ditto.
100        * libc/symlink.c: Ditto.
101        * libc/libio.h(rtems_filesystem_dev_major_t): New macro.
102        * libc/libio.h(rtems_filesystem_dev_minor_t): New macro.
103        * libc/memfile.c: Deleted assert.  Added code to properly handle
104        appending to a file.
105
1062000-08-10      Joel Sherrill <joel@OARcorp.com>
107
108        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.