]> gcc.gnu.org Git - gcc.git/blob - libio/ChangeLog
Uli's libio/libstdc++ patches.
[gcc.git] / libio / ChangeLog
1 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
2
3 * config/linux.mt: Rewrite for use with glibc 2.
4 * config/linuxlibc1.mt: Old content of linux.mt, fir libc4 and
5 libc5.
6
7 * config.shared (COMPILE.c): Allow new flags in MT_CFLAGS be
8 passed.
9 (COMPILE.cc): Likewise.
10
11 * configure.in (*-linux*): Remove goal. We now have...
12 (*-linux-gnulibc1): For libc4 and libc5. Emit warning.
13 (*-linux-gnu)): For glibc 2.
14 Create links to find headers for multi-threading if necessary.
15
16 * fileops.c: Make thread-safe by using _IO_cleanup_region_start
17 etc to handle cancelation. Acquire locks in functions which are
18 called directly.
19 (_IO_file_read, _IO_file_write): Remove dead code.
20
21 * include/empty.h: Define stub macros for locking.
22
23 * iolibio.h: Add prototypes for obstack printing functions.
24
25 * ioseekoff.c (_IO_seekoff): Lock stream before working.
26 * ioseekpos.c (_IO_seekpos): Likewise.
27
28 * iostream.cc: Add support for long double I/O.
29 Use __printf_fp from glibc is available.
30 Use _IO_cleanup_region_start to handle cancelation correctly.
31 * iostream.h (class ostream): Change opfx and osfx to lock/unlock
32 stream
33 (class istream): Likewise for ipfx, ipfx0, ipfx1, and isfx.
34 Declare new function lock and unlock for ostream and istream.
35 * osform.cc: Use _IO_cleanup_region_start to handle cancelation
36 correctly.
37
38 * libio.h: Update from glibc version. Pretty printing.
39 * libioP.h: Likewise.
40
41 * outfloat.c: Only compile if _IO_USE_DTOA is defined.
42
43 * stdio/feof.c: Make thread safe.
44 * stdio/ferror.c: Likewise.
45 * stdio/getc.c : Likewise.
46 * stdio/putc.c : Likewise.
47 * stdio/stdio.h: Declare function of thread-safe API.
48
49 * stdio/obprintf.c: New file.
50 * stdio/vasprintf.c: New file.
51
52 * stdio-lock.h: Removed.
53
54 * stdstrbufs.c: Add definitions for thread-safe streams.
55
56 * streambuf.cc: Initialize lock.
57
58 * strops.c (_IO_str_count): Undo last change.
59
60 * tests/tFile.cc: Support parallel builds by avoiding fixed
61 name for test file.
62
63 Thu Sep 11 18:43:56 1997 Jason Merrill <jason@yorick.cygnus.com>
64
65 * Makefile.in (iostream.list): Remove STDIO_WRAP_OBJECTS.
66
67 Mon Sep 8 01:30:27 1997 Weiwen Liu <liu@hepunix.physics.yale.edu>
68
69 * libio.h: Fix typo.
70
71 Sun Sep 7 23:00:18 1997 Jim Wilson (wilson@cygnus.com)
72
73 * linux.mt (LIBIOSTREAM_DEP): Change stdio.list to stmp-stdio.
74
75 Fri Sep 5 09:58:43 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
76
77 * Makefile.in (iostream.list): Instead of adding stdio.list, add
78 STDIO_WRAP_OBJECTS.
79 (iostream.list): Lose dependency on stmp-stdio, not necessary for
80 our stuff. The stdio stuff is present here just for uniformity
81 with glibc.
82
83 Thu Sep 4 17:26:22 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
84
85 * parsestream.cc (general_parsebuf): Cast return of malloc to char*.
86
87 1997-09-04 16:11 Ulrich Drepper <drepper@cygnus.com>
88
89 Change compared to version initially intended to in:
90 * strops.c (_IO_str_count): Still use _IO_write_ptr, not
91 _IO_write_end, for now.
92
93 * iofeof.c, ioferror.c, iofflush_u.c, iogetc.c, ioputc.c, peekc.c,
94 stdio-lock.h: New files.
95
96 * include: New dir.
97 * include/empty.h: New header.
98
99 * filedoalloc.c: Update and reformat copyright.
100 Don't use DEFUN.
101 Use __set_errno throughout the code to support multi-threaded
102 programs.
103 Correct layout to follow the Coding Standard.
104 Add casts to prevent warnings.
105 * fileops.c: Likewise.
106 * genops.c: Likewise.
107 * iofclose.c: Likewise.
108 * iofdopen.c: Likewise.
109 * iofflush.c: Likewise.
110 * iofgetpos.c: Likewise.
111 * iofgets.c: Likewise.
112 * iofopen.c: Likewise.
113 * iofprintf.c: Likewise.
114 * iofputs.c: Likewise.
115 * iofread.c: Likewise.
116 * iofsetpos.c: Likewise.
117 * ioftell.c: Likewise.
118 * iofwrite.c: Likewise.
119 * iogetdelim.c: Likewise.
120 * iogetline.c: Likewise.
121 * iogets.c: Likewise.
122 * iopadn.c: Likewise.
123 * iopopen.c: Likewise.
124 * ioputs.c: Likewise.
125 * ioseekoff.c: Likewise.
126 * iosetbuffer.c: Likewise.
127 * iosetvbuf.c: Likewise.
128 * iosprintf.c: Likewise.
129 * ioungetc.c: Likewise.
130 * iovsprintf.c: Likewise.
131 * iovsscanf.c: Likewise.
132 * libio.h: Likewise.
133 * libioP.h: Likewise.
134 * stdfiles.c: Likewise.
135 * strfile.h: Likewise.
136 * strops.c: Likewise.
137
138 * Makefile.in (IO_OBJECTS): Add peekc.o, iogetc.o, ioputc.o,
139 iofeof.o, and ioferror.o.
140 (iostream.list): Depend upon stmp-stdio. Add the entries
141 from stdio.list to iostream.list.
142 (stmp-stdio): New name for what was the stdio/stdio.list rule.
143 All it now does is cd down into stdio and build stdio.list.
144
145 * configure.in (ALL): Add libiostream.a.
146
147 * libio.h [_IO_MTSFE_IO]: Include header declaring locking code.
148 Otherwise define opaque _IO_lock_t.
149 Define _IO_cookie_file.
150 Rename _IO_getc to _IO_getc_unlocked, _IO_peekc to _IO_peekc_unlocked,
151 _IO_putc to _IO_putc_unlocked, _IO_feof to _IO_feof_unclocked, and
152 _IO_ferror to _IO_ferror_unlocked.
153 Add prototypes for _IO_getc, _IO_putc, _IO_feof, _IO_ferror,
154 and _IO_peekc_locked.
155 Add declarations for _IO_flockfile, _IO_funlockfile, and
156 _IO_ftrylockfile. If !_IO_MTSAFE_IO define _IO_flockfile,
157 _IO_funlockfile, _IO_ftrylockfile, _IO_cleanup_region_start, and
158 _IO_cleanup_region_end as empty macros.
159
160 * libioP.h: Change type of finish function to take an additional int
161 argument and change declaration of finish functions.
162 Add prototypes for _IO_seekoff and _IO_seekpos.
163 If _G_HAVE_MMAP is defined use stream buffers allocated with mmap.
164 Redefine FREE_BUF and ALLOC_BUF macros to help in both situations.
165 (FILEBUF_LITERAL): If we compile for a thread-safe library also
166 initialize lock member.
167
168 * filedoalloc.c: Take care for systems already defining _POSIX_SOURCE.
169 Keep name space clean on systems which require this.
170 (_IO_file_doallocate): Adopt ALLOC_BUF call for changed semantic.
171
172 * fileops.c: Keep name space clean on systems which require this.
173 (_IO_file_attach): Don't fail if seek failed because it's used on a
174 pipe.
175 (_IO_file_underflow): Update buffer pointers before calling `read'
176 since the `read' might not return anymore.
177 (_IO_file_overflow): If stream allows no writes set error flag.
178 (_IO_seekoff): Make sure that after flushing the file pointer in
179 the underlying file is exact.
180 (_IO_file_read): Don't restart `read' syscall if it return EINTR.
181 This violates POSIX.
182 (_IO_file_write): Likewise for `write'.
183 (_IO_cleanup): Install as exit handler in glibc.
184
185 * genops.c (_IO_setb): Correctly use FREE_BUF.
186 (_IO_default_doallocate): Correctly use ALLOC_BUF.
187 (_IO_init): Initialize lock in stream structure.
188 (_IO_default_finish): Destroy lock.
189 (_IO_get_column): Don't compile since it's not needed.
190 (_IO_nobackup_default): Likewise.
191
192 * iopopen.c: Take care for systems already defining _POSIX_SOURCE.
193 Correct _IO_fork and _IO_dup2 prototypes.
194
195 * iofclose.c: Acquire lock before starting the work.
196 * iofflush.c: Likewise.
197 * iofgetpos.c: Likewise.
198 * iofgets.c: Likewise.
199 * iofputs.c: Likewise.
200 * iofread.c: Likewise.
201 * iofsetpos.c: Likewise.
202 * ioftell.c: Likewise.
203 * iofwrite.c: Likewise.
204 * iogetdelim.c: Likewise.
205 * iogets.c: Likewise.
206 * ioputs.c: Likewise.
207 * iosetbuffer.c: Likewise.
208 * iosetvbuf.c: Likewise.
209 * ioungetc.c: Likewise.
210
211 * iofdopen.c: Create and initialize lock for new stream.
212 * iofopen.c: Likewise.
213 * iopopen.c (_IO_popen): Likewise.
214 * iovsprintf.c: Likewise.
215 * iovsscanf.c: Likewise.
216
217 * genops.c: Make weak aliases for various functions.
218 * iofclose.c: Likewise.
219 * iofdopen.c: Likewise.
220 * iofflush.c: Likewise.
221 * iofgetpos.c: Likewise.
222 * iofgets.c: Likewise.
223 * iofopen.c: Likewise.
224 * iofputs.c: Likewise.
225 * iofread.c: Likewise.
226 * iofsetpos.c: Likewise.
227 * ioftell.c: Likewise.
228 * iofwrite.c: Likewise.
229 * iogetdelim.c: Likewise.
230 * iogets.c: Likewise.
231 * ioputs.c: Likewise.
232 * iosetbuffer.c: Likewise.
233 * iosetvbuf.c: Likewise.
234 * ioungetc.c: Likewise.
235 * iovsprintf.c: Likewise.
236 * iovsscanf.c: Likewise.
237
238 * iofflush_u.c: New file. fflush_unlocked implementation.
239
240 * iostream.h [_G_HAVE_LONG_DOUBLE_IO]: Declare real long double
241 output operator.
242
243 * peekc.c: New file. Implement _IO_peekc_locked function.
244
245 * stdfiles.c: If we compile for a thread-safe library also define
246 lock variable.
247
248 Tue Aug 26 12:24:01 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
249
250 * testsuite/Makefile.in (check): Don't depend on site.exp.
251 (just-check): Depend on site.exp.
252
253 Wed Aug 20 02:01:34 1997 Jason Merrill <jason@yorick.cygnus.com>
254
255 * iostream.h: Add copy assignment ops for _IO_?stream_withassign.
256
257 Tue Jul 22 10:31:41 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
258
259 * config.shared (CHECK_SUBDIRS): Use install-sh, not install.sh.
260
261 Wed Jun 25 12:20:55 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
262
263 * config.shared (DOING_GPERF): Look for this, defining TOLIBGXX
264 and LIBS for it.
265
266 Wed Jun 18 11:03:34 1997 Bob Manson <manson@charmed.cygnus.com>
267
268 * config.shared (FLAGS_TO_PASS): Don't include RUNTEST.
269
270 Tue Jun 17 22:23:48 1997 Bob Manson <manson@charmed.cygnus.com>
271
272 * config.shared (FLAGS_TO_PASS): Pass RUNTEST and RUNTESTFLAGS.
273
274 Fri May 16 21:08:53 1997 Bob Manson <manson@charmed.cygnus.com>
275
276 * iovfprintf.c: Declare __cvt_double before use.
277
278 * floatconv.c (d2b): Use _G_int32_t instead of int for the
279 e and bits parameters.
280 (_IO_strtod): Use _G_int32_t.
281
282 * gen-params: Look for NO_USE_DTOA and USE_INT32_FLAGS.
283
284 * strops.c (_IO_str_init_static): use _G_int32_t appropriately.
285
286 * libio.h: If _G_NO_USE_DTOA is set, then don't define
287 _IO_USE_DTOA.
288
289 * config/mn10200.mt: Don't use dtoa, it only works
290 for "real" doubles.
291
292 Thu May 15 17:44:12 1997 Bob Manson <manson@charmed.cygnus.com>
293
294 * configure.in: Set CHECK_SUBDIRS to testsuite if we're doing
295 a cross compile.
296
297 * config.shared(check): Only run make check in the directories
298 specified by CHECK_SUBDIRS. Set CHECK_SUBDIRS to SUBDIRS
299 if it has no previous value.
300
301 Thu May 1 17:35:19 1997 Jason Merrill <jason@yorick.cygnus.com>
302
303 * Makefile.in (test, tpipe): Add $(CFLAGS).
304
305 Wed Apr 30 12:16:29 1997 Jason Merrill <jason@yorick.cygnus.com>
306
307 * configure.in: Don't turn on multilib here.
308
309 Sat Apr 26 13:38:21 1997 Bob Manson <manson@charmed.cygnus.com>
310
311 * configure.in (configdirs): Add testsuite directory.
312
313 * testsuite/ChangeLog:
314 * testsuite/Makefile.in:
315 * testsuite/libio.tests/tiomanip.exp:
316 * testsuite/libio.tests/tstdiomisc.exp:
317 * testsuite/libio.tests/tiomisc.exp:
318 * testsuite/libio.tests/tFile.exp:
319 * testsuite/libio.tests/tfformat.exp:
320 * testsuite/libio.tests/tiformat.exp:
321 * testsuite/libio.tests/hounddog.exp:
322 * testsuite/libio.tests/putbackdog.exp:
323 * testsuite/configure.in:
324 * testsuite/lib/libio.exp:
325 * testsuite/config/default.exp:
326 New files for DejaGnu-style testsuite.
327
328 Fri Apr 4 03:16:44 1997 Ulrich Drepper <drepepr@cygnus.com>
329
330 * configure.in: Enable multilibing by default.
331 Update multilib template to read config-ml.in.
332
333 * floatconv.c: Enable use in cross targets which use the
334 newlib ieeefp.h header.
335
336 Thu Jan 23 09:16:16 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
337
338 * libioP.h (_IO_file_attach): Delete redundant decl.
339
340 Tue Jan 21 22:13:45 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
341
342 * streambuf.h (class ios): Take out STREAMSIZE member, since we
343 only need (and should only have) the global one.
344
345 Tue Jan 7 14:02:40 1997 Jason Merrill <jason@yorick.cygnus.com>
346
347 * iostream.h (long long fns): Use __extension__.
348
349 * gen-params: Use _G_llong and _G_ullong instead of long long for
350 deduced types.
351
352 Fri Dec 6 13:13:30 1996 Jason Merrill <jason@yorick.cygnus.com>
353
354 * dbz/dbz.c: Use off_t.
355
356 Sat Nov 23 15:44:37 1996 Jason Merrill <jason@yorick.cygnus.com>
357
358 * Makefile.in (install): Don't install _G_config.h with other headers.
359
360 Mon Nov 18 17:12:41 1996 Jason Merrill <jason@yorick.cygnus.com>
361
362 * config.shared (SUBDIRS): Use -O instead of -O3 for debugging.
363
364 Sun Nov 3 12:43:34 1996 Jason Merrill <jason@yorick.cygnus.com>
365
366 * iostream.cc (write_int): Treat string literals as const.
367
368 Thu Sep 26 10:09:18 1996 Michael Meissner <meissner@tiktok.cygnus.com>
369
370 * depend: Regenerate.
371
372 Wed Sep 25 22:54:45 1996 Jason Merrill <jason@yorick.cygnus.com>
373
374 * config.shared (depend.new): Deal with headers that don't end in .h.
375
376 Thu Aug 29 17:05:53 1996 Michael Meissner <meissner@tiktok.cygnus.com>
377
378 * configure.in (i[345]86-*-*): Recognize i686 for pentium pro.
379
380 Mon Aug 5 01:26:32 1996 Jason Merrill <jason@yorick.cygnus.com>
381
382 * config{ure.in,.shared} (DISTCLEAN): Add multilib.out.
383
384 Fri Aug 2 17:39:35 1996 Jason Merrill <jason@yorick.cygnus.com>
385
386 * libio.h (NULL): Use __null.
387 * libioP.h (NULL): Ditto.
388 * streambuf.h (NULL): Ditto.
389 * ioextend.cc (get_array_element): Use NULL instead of (void*)0.
390
391 Fri Jul 5 18:26:41 1996 Jim Wilson <wilson@cygnus.com>
392
393 * strfile.h (struct _IO_streambuf): New struct type.
394 (struct _IO_strfile): Use it.
395
396 Tue Jun 18 18:24:21 1996 Jason Merrill <jason@yorick.cygnus.com>
397
398 * fstream.h (fstreambase): Make __my_fb mutable.
399 From Joe Buck.
400
401 Tue Jun 18 11:03:53 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
402
403 * dbz/fake.c (main): Set return type to int.
404 * dbz/dbzmain.c (main): Likewise.
405 * dbz/byteflip.c (main): Likewise.
406
407 Mon Jun 17 14:05:36 1996 Jason Merrill <jason@yorick.cygnus.com>
408
409 * gen-params: Check if clog conflicts with system libraries.
410 * stdstreams.cc: If it does, use __IO_clog.
411 * iostream.h: Likewise.
412
413 Tue Jun 11 13:39:31 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
414
415 * stdiostream.h (istdiostream (FILE*)): Put istream base
416 initializer before init for __f.
417 (ostdiostream (FILE*)): Likewise for ostream base init.
418
419 Tue May 14 11:47:21 1996 Per Bothner <bothner@andros.cygnus.com>
420
421 * strfile.h (_IO_str_fields): Removed _len field.
422 (_IO_STR_DYNAMIC, _IO_STR_FROZEN): new macros.
423 * strstream.h (strstreambuf::is_static): Removed.
424 (strstreambuf::frozen): Use _IO_STR_DYNAMIC instead of is_static.
425 * strstream.h, strstream.cc: Remove support for !_IO_NEW_STREAMS.
426 * strstream.cc (strstreambuf::init_dynamic): Don't set _s._len.
427 * strops.c (_IO_str_init_static): Better handling of the
428 negative (== unbounded) size case.
429 (_IO_str_overflow, _IO_str_underflow, _IO_str_count): Re-write
430 to not use _s._len, and otherwise cleanup/fix.
431 * strstream.h, strstream.cc (strstreambase::strstreambase()): Call
432 ios::init here.
433 (other constructors): Simplify - init already called.
434
435 Tue May 14 10:55:21 1996 Per Bothner <bothner@deneb.cygnus.com>
436
437 Change so that strstreambuf default constructor does no allocation.
438 * strstream.h (strstreambuf::init_dynamic): Default initial size = 0.
439 * strstream.cc (strstreambuf::init_dynamic): Don't allocate a
440 buffer (yet) if initial_size is 0.
441 * strops.c (_IO_str_overflow): Add 100 to size of re-allocated
442 buffer, to handle case when initial size is 0.
443
444 * iostdio.h (remove, rename, tmpfile, tempnam): Comment out.
445
446 Mon May 13 23:19:39 1996 Per Bothner <bothner@deneb.cygnus.com>
447
448 * fileops.c (_IO_file_close_it): Just call _IO_do_flush rather
449 than _IO_file_sync, to avoid useless lseek.
450
451 Tue May 14 10:48:48 1996 Jason Merrill <jason@yorick.cygnus.com>
452
453 * floatconv.c (_IO_strtod): Force rv into the stack.
454
455 * config.shared (gxx_includedir): Now $(includedir)/g++.
456
457 Sat Apr 27 02:37:49 1996 Jason Merrill <jason@yorick.cygnus.com>
458
459 * libioP.h (JUMP*): Implement for thunks.
460 (_IO_jump_t): Add second dummy field for thunks.
461
462 Thu Apr 25 13:20:00 1996 Jason Merrill <jason@yorick.cygnus.com>
463
464 * config.shared (CXX): Use gcc, not g++.
465
466 Wed Apr 24 10:29:50 1996 Doug Evans <dje@blues.cygnus.com>
467
468 * config.shared (depend.new): Delete $(srcdir)/ from foo.{c,cc}
469 for SunOS VPATH.
470 * depend: Regenerated.
471
472 Fri Apr 19 17:24:51 1996 Jason Merrill <jason@yorick.cygnus.com>
473
474 * Version 2.8.0b3.
475
476 Wed Apr 10 17:16:01 1996 Jason Merrill <jason@yorick.cygnus.com>
477
478 * configure.in (ALL): Don't build iostream.a.
479
480 Mon Apr 8 14:44:11 1996 Per Bothner <bothner@kalessin.cygnus.com>
481
482 * iosetvbuf.c (_IO_setvbuf): Clear _IO_UNBUFFERED unless _IONBF.
483
484 Mon Apr 8 15:08:23 1996 Ian Lance Taylor <ian@cygnus.com>
485
486 * configure.in: Permit --enable-shared to specify a list of
487 directories.
488
489 Fri Apr 5 17:48:56 1996 Per Bothner <bothner@kalessin.cygnus.com>
490
491 * config.shared (MOSTLYCLEAN): Also remove ${EXTRA_MOSTLYCLEAN}.
492
493 Fri Mar 22 23:25:00 1996 Ulrich Drepper <drepepr@gnu.ai.mit.edu>
494
495 * genops.c (_IO_sputbackc, _IO_sungetc): Clear EOF flag if putsh
496 back was successful.
497
498 Wed Mar 27 11:54:08 1996 Jason Merrill <jason@yorick.cygnus.com>
499
500 * Version 2.8.0b2.
501
502 Fri Mar 22 15:39:36 1996 Per Bothner <bothner@kalessin.cygnus.com>
503
504 * fileops.c (_IO_do_write): Revert previous fix. (It fails to
505 handle the case that fp->_IO_read_end != fp->_IO_write_base.)
506 (_IO_file_overflow): Instead, if _IO_read_ptr is at the end of
507 the buffer, reset all the read pointers to _IO_buf_base.
508
509 Tue Mar 12 12:03:17 1996 Per Bothner <bothner@kalessin.cygnus.com>
510
511 * fileops.c (_IO_do_write): Even if to_do==0, must re-set buffer
512 pointers. Bug and solution from Luke Blanshard <luke@cs.wisc.edu>.
513
514 Wed Feb 28 10:00:24 1996 Jason Merrill <jason@yorick.cygnus.com>
515
516 * Version 2.8.0b1.
517
518 Tue Feb 27 18:08:16 1996 Per Bothner <bothner@kalessin.cygnus.com>
519
520 * iopopen.c (_IO_proc_open): Use (char*)0 rather than imprecise NULL.
521
522 * streambuf.h (ios): Add ios::binary; deprecate ios::bin.
523 * filebuf.cc (filebuf::open): Handle ios::binary.
524
525 Fri Feb 9 12:40:19 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
526
527 * cleanup.c (_IO_cleanup_registration_needed) [!_G_HAVE_ATEXIT]: Init
528 to NULL.
529 * filedoalloc.c (_IO_cleanup_registration_needed): Remove decl.
530
531 Thu Feb 8 08:12:50 1996 Brendan Kehoe <brendan@cygnus.com>
532
533 * filedoalloc.c (_IO_cleanup_registration_needed): Revert previous
534 change, since cleanup.c only defines it if _G_HAVE_ATEXIT.
535
536 Wed Feb 7 15:10:17 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
537
538 * filedoalloc.c (_IO_cleanup_registration_needed): Declare as extern.
539
540 Tue Dec 12 17:21:13 1995 Per Bothner <bothner@kalessin.cygnus.com>
541
542 * indstream.h, instream.cc (indirectbuf::uflow): New method.
543 * indstream.cc (indirectbuf::underflow): Fix to use sgetc, not sbumpc.
544 Fixes bug reported by Kevin Beyer <beyer@cs.wisc.edu>.
545
546 * indstream.cc (indirectbuf::seekpos): Add paranoia test.
547
548 Fri Dec 8 14:55:34 1995 Per Bothner <bothner@kalessin.cygnus.com>
549
550 * stream.h: Add warning to not use these functions.
551 * stream.cc (str, chr): Re-implement here (from libg++).
552
553 Tue Nov 28 15:07:01 1995 Per Bothner <bothner@kalessin.cygnus.com>
554
555 * config.shared: Use test instead of [ to avoid DEC Unix lossage.
556
557 Thu Nov 23 14:51:43 1995 Per Bothner <bothner@kalessin.cygnus.com>
558
559 * iopopen.c: Move #include <sys/types.h> ahead of #include <signal.h>
560 to deal with BSDI's literal implementation of Posix.
561
562 Sat Nov 25 11:21:55 1995 Doug Evans <dje@canuck.cygnus.com>
563
564 * Makefile.in (install): Set rootme.
565 * config.shared (TOPDIR): Set with ${foo-...} rather than ${foo=...}.
566 (INSTALL): Handle absolute, dot, relative-not-dot values of srcdir.
567 (TEXIDIR): Likewise.
568
569 Tue Nov 21 14:12:05 1995 Ian Lance Taylor <ian@cygnus.com>
570
571 * configure.in: Check ${with_cross_host} rather than comparing
572 ${host} and ${target}.
573
574 Mon Nov 20 13:55:29 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
575
576 * configure.in: Match *-sco3.2v[45]*.
577
578 Wed Nov 15 20:19:31 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
579
580 * config.shared (FLAGS_TO_PASS): Also pass SHLIB and SHCURSES.
581
582 Tue Nov 14 01:41:08 1995 Doug Evans <dje@canuck.cygnus.com>
583
584 * config.shared (TO_REAL_TOPDIR): Define.
585 (MULTITOP): Deleted.
586 (MULTISRCTOP, MULTIBUILDTOP): New.
587 (TOPDIR): Change MULTITOP to MULTIBUILDTOP, and use TO_REAL_TOPDIR.
588 (INSTALL): Add with_multisrctop, TO_REAL_TOPDIR.
589 (TEXIDIR): Use TO_REAL_TOPDIR.
590 (LIBS): Delete MULTITOP.
591 (FLAGS_TO_PASS): Add NM.
592 (CXXINCLUDES): Delete MULTITOP.
593 (depend.new): Delete adding MULTITOP to ../ build tree references.
594 Add MULTISRCTOP to ../ source tree references.
595 * configure.in: Delete call to cfg-ml-com.in. Call config-ml.in
596 instead of cfg-ml-pos.in.
597
598 Sun Nov 12 16:30:48 1995 Per Bothner <bothner@kalessin.cygnus.com>
599
600 * Makefile.in (VERSION): Set to 2.7.1.
601 * configure.in: Add warning for Linux.
602 * config.shared (DISTCLEAN): Add EXTRA_DISTCLEAN.
603
604 * editbuf.h (edit_mark::index_in_buffer): Avoid unused param warning.
605
606 * iostream.cc (istream::operator>> (char*)): Improve ANSI compliance.
607
608 Fri Nov 10 08:41:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
609
610 * config.shared (check): Add missing semicolon.
611
612 Thu Nov 9 17:27:22 1995 Jason Merrill <jason@yorick.cygnus.com>
613
614 * configure.in (ALL): Remove $(OSPRIM_OBJECTS).
615 * config.shared (check): Set LD_LIBRARY_PATH.
616 * NEWS: Fix typo.
617 * iogetdelim.c (_IO_getdelim): Index *lineptr, rather than lineptr.
618 From alan@spri.levels.unisa.edu.au (Alan Modra).
619
620 Mon Nov 6 15:03:33 1995 Per Bothner <bothner@kalessin.cygnus.com>
621
622 * streambuf.cc, editbuf.cc, isgetline.cc, parsestream.cc:
623 Fixes to avoid -Wall warnings.
624
625 Fri Nov 3 16:41:41 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
626
627 * gen-params [!__STDC__]: Include varargs.h instead of stdarg.h.
628
629 Thu Nov 2 15:04:03 1995 Per Bothner <bothner@kalessin.cygnus.com>
630
631 * config.shared: Re-write if X then Y else true fi to (not X) || Y.
632
633 Wed Nov 1 13:26:44 1995 Per Bothner <bothner@kalessin.cygnus.com>
634
635 * iostream.h (istream::ipfx): Add default argument value.
636 Reported by Yotam Medini <yotam_medini@tmai.com>.
637
638 * libioP.h (_IO_blen): Fix typo.
639 Reported by Bryan T. Vold <btv@ldl.healthpartners.com>.
640
641 Fri Oct 27 19:26:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
642
643 * Makefile.in (_G_config.h): Set CC to $(CC) rather than to $(CXX),
644 now that CXX defaults to g++ and CC default to gcc (when found).
645 * config.shared: Simplify CXX and CC, since they get overridden
646 by ../configure anyway.
647
648 Wed Oct 25 19:45:50 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
649
650 * iostdio.h: Wrap including the file with #ifndef _IOSTDIO_H.
651
652 Wed Oct 25 11:14:25 1995 Per Bothner <bothner@kalessin.cygnus.com>
653
654 * libio.h (_IO_seekoff, _IO_seekpos): New declarations.
655 * libioP.h (_IO_seekoff, _IO_seekpos): Remove declarations.
656 * libioP.h: Cleanup; remove old !_IO_UNIFIED_JUMPTABLES stuff.
657
658 * filebuf.cc (filebuf::~filebuf): Only call SYSYCLOSE if currently
659 open. Bug found by Martin Gerbershagen <ger@ezis-ulm.de>.
660
661 * streambuf.h (streambuf::pubseekoff, streambuf::pubseekpos):
662 Added, from ANSI draft.
663 * filebuf.cc (filebuf::open), iostream.cc (variables places), SFile.cc:
664 Use pubseekoff/pubseekpos rather than sseekoff/sseekpos.
665
666 * Makefile.in (install): Don't install libiostream.a.
667
668 * filedoalloc.c: Also #include <unistd.h>.
669
670 Mon Oct 9 18:09:54 1995 Jason Molenda <crash@phydeaux.cygnus.com>
671
672 * config.shared (SUFFIXES): add .c.
673
674 Tue Sep 26 16:08:01 1995 Per Bothner <bothner@kalessin.cygnus.com>
675
676 * procbuf.cc: Move #pragma implementation to beginning.
677
678 Wed Sep 20 17:53:33 1995 Per Bothner <bothner@kalessin.cygnus.com>
679
680 * procbuf.h, procbuf.cc: Add #pragma interface/implementation stuff.
681
682 Wed Sep 20 18:59:00 1995 John Eaton <jwe@bevo.che.wisc.edu>
683
684 * procbuf.h: Protect from being included multiple times.
685
686 Wed Sep 20 15:47:14 1995 John Eaton <jwe@bevo.che.wisc.edu>
687
688 * procbuf.h (procbuf): Add '_next' pointer field for compatibility
689 with _IO_proc_file.
690
691 Wed Sep 20 13:54:02 1995 Ian Lance Taylor <ian@cygnus.com>
692
693 * config.shared: Add support for maintainer-clean target as a
694 synonym for realclean.
695 * dbz/Makefile.in: Likewise.
696
697 Mon Sep 11 12:11:19 1995 Per Bothner <bothner@kalessin.cygnus.com>
698
699 * iopopen.c: #include <sys/types.h> before <sys/wait.h>.
700 This is in accordance with Posix, and needed for ISC.
701
702 Fri Sep 8 00:11:55 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
703
704 * gen-params: Use double quotes in the eval setting $TYPE to
705 $VALUE, to preserve any single quotes in $VALUE.
706
707 Mon Aug 21 11:39:09 1995 Jason Merrill <jason@phydeaux.cygnus.com>
708
709 * gen-params: Test for an appropriate version of gcc before using
710 mode attributes.
711
712 * config.shared: Add $(PICDIR) to $ALL.
713
714 Mon Aug 7 17:51:40 1995 Per Bothner <bothner@kalessin.cygnus.com>
715
716 * gen-params: Generate new macro _G_HAVE_SYS_CDEFS.
717 * libio.h: If _G_HAVE_SYS_CDEFS, get __P from <sys/cdefs.h>.
718
719 Fri Aug 4 23:21:17 1995 Paul Eggert <eggert@twinsun.com>
720
721 * gen-params: When following typedef changes, allow typedefs
722 that do not have a space before the defined type name,
723 e.g. `typedef void *__gnuc_va_list;' as in Linux. Also,
724 not require a space in the definiens, e.g. `typedef void*foo;'.
725
726 Thu Aug 3 17:54:15 1995 Per Bothner <bothner@kalessin.cygnus.com>
727
728 * iostream.h, iostream.cc (istream::sync): Added missing method.
729
730 Thu Aug 3 17:49:34 1995 Per Bothner <bothner@kalessin.cygnus.com>
731
732 * configure.in: Remove netbsd special case.
733 * config/netbsd.mt: Removed; no longer used.
734
735 Tue Jun 20 16:07:12 1995 Paul Eggert <eggert@twinsun.com>
736
737 * gen-params: Take transitive closure of `typedef' relation.
738 This is needed for BSD/OS 2.0, which has
739 fpos_t -> off_t -> quad_t -> long long.
740
741 Mon Jul 24 18:28:10 1995 Doug Evans <dje@canuck.cygnus.com>
742
743 * config.shared (TOPDIR): Delete extra '/', $rootme may be empty.
744
745 Sat Jul 22 13:27:45 1995 Doug Evans <dje@canuck.cygnus.com>
746
747 * config.shared (depend.new): Fix quoting in DO NOT EDIT line.
748
749 * Makefile.in (_G_config.h): Add multilib support.
750 (install): Likewise.
751 * config.shared: Likewise.
752 * configure.in: Likewise.
753
754 Wed Jun 28 17:40:25 1995 Jason Merrill <jason@phydeaux.cygnus.com>
755
756 * PlotFile.h, SFile.h, builtinbuf.h, editbuf.h, fstream.h,
757 indstream.h, iomanip.h, iostream.h, parsestream.h, pfstream.h,
758 procbuf.h, stdiostream.h, stream.h, streambuf.h, strstream.h: Wrap
759 with extern "C++".
760
761 Thu Jun 22 04:34:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
762
763 * gen-params: Surround attributes with __.
764
765 Mon Jun 19 00:33:22 1995 Jason Merrill <jason@phydeaux.cygnus.com>
766
767 * config.shared (SUBDIRS): Massage broken shells that require
768 'else true'.
769
770 Sat Jun 17 11:25:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
771
772 * streambuf.h: Declare inline members inline in class.
773
774 Thu Jun 15 20:45:13 1995 Per Bothner <bothner@kalessin.cygnus.com>
775
776 * Makefile.in (VERSION): Update to version 2.7.0.
777
778 Wed Jun 14 21:41:11 1995 Jason Merrill <jason@python.cygnus.com>
779
780 * Makefile.in (STDIO_WRAP_OBJECTS): Remove stdfiles.o.
781 (LIBIO_OBJECTS): Add stdfiles.o.
782
783 Wed Jun 7 16:11:36 1995 Jason Merrill <jason@python.cygnus.com>
784
785 * config.shared (all): Appease bash.
786
787 Wed Jun 7 11:16:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
788
789 * configure.in (MOSTLYCLEAN): Remove stamp-picdir.
790
791 * config.shared (MOSTLYCLEAN): Ditto.
792 (CLEAN): Don't.
793
794 Mon Jun 5 18:29:39 1995 Jason Merrill <jason@phydeaux.cygnus.com>
795
796 * config/mh-*pic: Removed.
797
798 * configure.in (MOSTLYCLEAN): Remove pic objects.
799 (frags): Use toplevel pic fragments.
800
801 * config.shared (CXXFLAGS): Use -O3.
802 (PICFLAG, PICDIR): New macros.
803 (all): Depend on $(PICDIR).
804 (FLAGS_TO_PASS): Pass PICFLAG.
805 (.x.o): Also build pic object.
806 (stamp-picdir): Create directory for pic objects.
807 (MOSTLYCLEAN): Remove pic objects.
808 (CLEAN): Remove stamp-picdir.
809
810 * Makefile.in (iostream.list): Depend on stamp-picdir.
811 (c++clean): Don't remove _G_config.h.
812
813 Mon Jun 5 15:03:47 1995 Per Bothner <bothner@kalessin.cygnus.com>
814
815 * strstream.h, strstream.cc (strstream::strstream()): Re-implement to
816 be like ostrstream::ostrestream(), and not leak memory.
817
818 * streambuf.h: Use #if !_IO_UNIFIED_JUMPTABLES instead of #ifndef.
819
820 * iolibio.h (_IO_rewind): Add missing flags when calling _IO_seekoff.
821
822 Thu May 25 22:30:21 1995 J.T. Conklin <jtc@rtl.cygnus.com>
823
824 * config/netbsd.mt (G_CONFIG_ARGS): Add defn for off_t. Another
825 layer of typedefs has been added and the gen-params script can
826 not handle it.
827
828 Wed May 10 03:02:58 1995 Jason Merrill <jason@python.cygnus.com>
829
830 * iolibio.h (_IO_rewind): Add new argument to _IO_seekoff.
831
832 * config/linux.mt (LIBIOSTREAM_OBJECTS): Include $(STDIO_WRAP_OBJECTS).
833 (LIBIOSTREAM_DEP): Include stdio.list.
834 (LIBIOSTREAM_USE): Include `cat stdio.list`.
835
836 * Makefile.in (LIBIOSTREAM_DEP): New variable.
837 (LIBIOSTREAM_USE): Ditto.
838 (libiostream.a): Use them.
839 (iostream.list): Ditto.
840 (stdio.list): New rule.
841 (stdio/stdio.list): Ditto.
842
843 Tue May 9 18:29:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
844
845 * libioP.h (_IO_jump_t): Change TYPE for __dummy from int to
846 _G_size_t.
847
848 Sat May 6 13:50:37 1995 Per Bothner <bothner@kalessin.cygnus.com>
849
850 * libio.h (_IO_UNIFIED_JUMPTABLES): #define as true.
851 (_IO_FILE): Remove _jumps field (#if _IO_UNIFIED_JUMPTABLES).
852
853 * libioP.h (enum _IO_seekflags_): Removed.
854
855 * libioP.h (_IO_setbuf_t): Change return value of setpos jumptable
856 function to match C++ streambuf::setpos. (Return NULL on failure.)
857 * fileops.c (_IO_file_setbuf), genops.c (_IO_default_setbuf),
858 filebuf.cc, iosetvbuf.c: Update to use new setbuf conventions.
859
860 * streambuf.h (streambuf): Re-order virtual functions more logically.
861 * streambuf.cc (streambuf::uflow), streambuf.h: New virtual.
862 * libioP.h (struct _IO_jump_t): Define using new JUMP_FIELD macro.
863 And re-order in more logical order consistent with streambuf vtable.
864 * fileops.c (_IO_file_jumps), iopopen.c (_IO_proc_jumps), iovfprintf.c
865 (_IO_helper_jumps), streambuf.cc (_IO_streambuf_jumps), strops.c
866 (_IO_str_jumps): Update accordingly, using JUMP_INIT macro.
867 * stdfiles.c: Set vtable to point to _IO_file_jumps.
868 * filebuf.cc, iopopen.c, iovfprintf.c (helper_vfprintf), iovsprintf.c,
869 iovsscanf.c: Use macros and #if to set jumptables.
870
871 * streambuf.c: _IO_streambuf_jumps and the _IO_sb_* methods are not
872 needed #if _IO_UNIFIED_JUMPTABLES.
873 * filebuf.cc (filebuf::__new): Also no longer needed.
874 * fstream.cc (fstreambase::__fb_init, fstreambase::fstreambase): Fix.
875 * stdstrbufs.c: Use filebuf vtable instead of builtinbuf's.
876 * builtinbuf.h, builtinbuf.cc (builtinbuf): Commented out #if
877 _IO_UNIFIED_JUMPTABLES - no longer needed.
878 * strstream.cc (SET_STR_JUMPS): Does nothing now.
879
880 * builtinbuf.cc, fileops.c, genops.c, iofgetpos.c, iofsetpos.c,
881 ioftell.c, iopopen.c, ioseekoff.c, ioseekpos.c, iosetvbuf.c,
882 iovfprintf.c, iovfscanf.c, strops.c: Use DEFUN and DEFUN_VOID.
883 * filebuf.cc, fileops.c, genops.c, iopopen.c, ioseekoff.c, ioseekpos.c,
884 iosetvbuf.c, iovfscanf.c: Use new JUMP_* and IO_OVERFLOW/... macros.
885
886 * libioP.h (_IO_seekpos_t): Third arg is now an int (using _IOS_INPUT
887 and _IOS_OUTPUT), not an enum _IO_seekflags_. Flags values are
888 changed, and their sense inverted (to match streambuf::seekpos).
889 * libioP.h (_IO_seekoff_t): Similarly match streambuf::seekoff.
890 * filebuf.cc, fileops.c (_IO_file_fopen, _IO_file_seekoff), genops.c
891 (_IO_default_seekpos, _IO_default_seekpos), iofgetpos.c, iofsetpos.c,
892 iolibio.h (_IO_fseek), ioftell.c, ioseekoff.c, ioseekpos.c,
893 iostream.cc, streambuf.cc, strops.c (_IO_str_seekoff), strstream.cc:
894 New seekpos/seekoff conventions.
895 * iostreamP.h (convert_to_seekflags): Removed - no longer needed.
896
897 * iolibio.h (_IO_fread): New declaration.
898
899 * dbz/Makefile.in: Re-arrange for cleaner dependencies.
900
901 Fri May 5 15:55:22 1995 Per Bothner <bothner@kalessin.cygnus.com>
902
903 * libioP.h (_IO_JUMPS. JUMP_FIELD, JUMP0, JUMP1, JUMP2, JUMP3,
904 JUMP_INIT, _IO_FINISH, _IO_OVERFLOW, ... _IO_SYSSTAT): New macros
905 in preparation for new unified jumptable/vtable implementation.
906 * cleanup.c, filedoalloc.c, iofclose.c, iofflush.c, iofiledoalloc.c,
907 ioprims.c, iosetbuffer.c, iostrerror.c, ioungetc.c: Use DEFUN.
908 * filedoalloc.c, iofclose, iofflush, iosetbuffer.c: Use new macros.
909
910 * iofopen.c, iofdopen.c: Use macros and #if for new jumptables.
911
912 * gen-params: Do not #include <sys/types.h>.
913 Add missing quote in 'eval'.
914 Do add #include <sys/types.h> in test for <sys/resource.h>.
915 * config/netbsd.mt: New file, defining _G_CONFIG_ARGS (for fpos_t).
916 * configure.in: Use netbsd.mt for NetBSD.
917
918 Wed May 3 15:03:47 1995 Per Bothner <bothner@kalessin.cygnus.com>
919
920 * libioP.h (DEFUN, DEFUN_VOID, AND): New macros, from ansidecl.h.
921 * iofdopen.c, iofgets.c, iofopen.c, iofputs.c, iofread.c, iofwrite.c,
922 iogetdelim.c, iogetline.c, iogets.c, ioignore.c, iopadn.c, ioperror.c,
923 ioputs.c, iovsprintf.c, iovsscanf.c, outfloat.c: Use DEFUN.
924
925 Mon May 1 16:22:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
926
927 * gen-params: #include <sys/types.h>. Don't use __WCHAR_TYPE__ in
928 definition of _G_wchar_t. Use __attribute__ ((mode)) to get
929 specific-sized ints under gcc, don't worry about int8 or int64
930 otherwise. Provide defaults if deduction fails.
931
932 Thu Apr 27 18:27:53 1995 Per Bothner <bothner@kalessin.cygnus.com>
933
934 * streambuf.h (ios::~ios): Delete _arrays.
935 (_IO_NEW_STREAMS): Turn on.
936 * libio.h (__adjust_column): Remove bogus declaration.
937 * genops.c (_IO_set_column): Fix typo (in commented-out code).
938
939 Tue Apr 25 17:14:29 1995 Jason Merrill <jason@phydeaux.cygnus.com>
940
941 * config.shared (CXXINCLUDES): Use a shell variable with a
942 different name from the make variable.
943 * configure.in: Update accordingly.
944
945 Mon Apr 17 17:19:40 1995 Per Bothner <bothner@kalessin.cygnus.com>
946
947 * streambuf.h (__adjust_column): Remove redundant declaration.
948
949 Sat Apr 15 11:39:25 1995 Per Bothner <bothner@kalessin.cygnus.com>
950
951 * config.shared (do-clean-dvi): Also remove *.cps.
952
953 * gen-params: Use ${SED} instead of sed.
954
955 * libio.h: Remove #if'd out stuff (confuses makedepend).
956
957 * stdstreams.cc (STD_STR): Standard streams start with ios::dec set.
958
959 Fri Apr 14 23:46:31 1995 Per Bothner <bothner@kalessin.cygnus.com>
960
961 * iostream.h, iostream.cc (istream::read, ostream::write):
962 Use streamsize for the length parameter.
963
964 * streambuf.h: Removed redundant __overflow and __underflow.
965
966 * fstream.h, fstream.cc: Add void fstreambase::attach(int).
967
968 * iosscanf.c (_IO_sscanf): Fix non-__STDC__ missing declaration.
969
970 Mon Apr 3 15:40:55 1995 Jason Merrill <jason@phydeaux.cygnus.com>
971
972 * indstream.*: Fix prototypes of xsputn and xsgetn.
973
974 * fileops.c: Avoid ??? trigraph.
975
976 Mon Mar 27 16:16:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
977
978 * iomanip.h (operator<< (ostream&, const omanip<TP>&): Define
979 separately.
980 (operator>> (istream&, const imanip<TP>&): Ditto.
981
982 Mon Mar 27 08:56:00 1995 Brendan Kehoe (brendan@lisa.cygnus.com)
983
984 * builtinbuf.cc (builtinbuf::setbuf): Cast NULL to streambuf*, to
985 avoid warning/error about conversion from void*.
986 * indstream.cc (indirectbuf::seekoff): Likewise.
987 (indirectbuf::seekpos): Likewise.
988 * filebuf.cc (filebuf::setbuf): Likewise.
989 (filebuf::close): Cast NULL to filebuf*.
990
991 Wed Mar 1 14:23:18 1995 Per Bothner <bothner@kalessin.cygnus.com>
992
993 * configure.in (DISTCLEAN): Add, with target-mkfrag.
994
995 Fri Feb 24 01:01:08 1995 Jason Merrill <jason@python.cygnus.com>
996
997 * configure.in (frags): Don't require so many dashes in the
998 canonical target name.
999
1000 Sat Feb 18 13:18:30 1995 Per Bothner <bothner@kalessin.cygnus.com>
1001
1002 * streambuf.cc (streambuf::sync): Always return 0, even for
1003 non-flushed output. This is required by the ANSI/ISO draft.
1004 * genops.c (_IO_sync): Likewise always return 0.
1005
1006 Fri Feb 17 16:33:28 1995 Per Bothner <bothner@kalessin.cygnus.com>
1007
1008 * fileops.c (_IO_file_close_it): Call _IO_file_sync, rather
1009 than _IO_do_flush, because we want to adjust the file pointer
1010 if reading and not at end (as in SVR4, and as in fflush).
1011 Also, make sure to return error indication if sync fails.
1012 (_IO_file_sync): Ignore seek error if it is ESPIPE.
1013 (_IO_file_seekoff): If not readable, do dumb lseek.
1014 * iofclose.c (_IO_fclose): If closing a non-filebuf, return -1
1015 if _IO_ERR_SEEN.
1016
1017 Fri Feb 17 19:31:00 1995 Ian Lance Taylor <ian@cygnus.com>
1018
1019 * gen-params: Check for struct tms in <sys/times.h>, defining
1020 HAVE_SYS_TIMES accordingly.
1021
1022 Wed Feb 15 21:05:11 1995 Per Bothner <bothner@kalessin.cygnus.com>
1023
1024 * strops.c (_IO_str_count): Use LEN macro.
1025 (_IO_str_seekoff): Update _len field.
1026
1027 Mon Feb 6 19:29:00 1995 Jason Merrill <jason@phydeaux.cygnus.com>
1028
1029 * gen-params: Default to short, long and long long for 16, 32 and
1030 64 bit types, in case detection fails.
1031
1032 Wed Jan 25 18:07:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
1033
1034 * gen-params (_G_wint_t): Allow for broken promotions.
1035
1036 Tue Jan 24 16:15:40 1995 Per Bothner <bothner@kalessin.cygnus.com>
1037
1038 * stdstrbufs.cc (_IO_fake_stdiobufs): Add an extra layer of struct,
1039 to force correct alignment on i960s.
1040 (DEF_STDIOBUF, _IO_{stdin,stdout,stderr}_buf): Update accordingly.
1041
1042 Thu Jan 19 18:30:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
1043
1044 * config.shared (CXXINCLUDES): Add libstdc++ to includes for
1045 building libg++.
1046 (LIBS): Also link with libstdc++ when building libg++ toys.
1047 Don't set EXPORT_ALL_VARIABLES; users will have to set
1048 LD_LIBRARY_PATH themselves.
1049
1050 Fri Dec 30 16:38:13 1994 Mike Stump <mrs@cygnus.com>
1051
1052 * config/linux.mt: Fix build problem on linux 1.0.8.
1053
1054 Thu Dec 22 11:49:45 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
1055
1056 * config/netware.mt: Use gcc to pre-link iostream.nlm's objects
1057 instead of using nlmconv, so that references to functions in
1058 libgcc.a are resolved.
1059
1060 * configure.in: Append .mt to target makefile fragment file names.
1061
1062 * floatconv.c (tens, tinytens, bigtens): Added const qualifier.
1063
1064 Tue Dec 20 09:59:50 1994 Mike Stump <mrs@cygnus.com>
1065
1066 * gen-params (VTABLE_LABEL_PREFIX): Since some systems have GNU nm
1067 as nm, and they demangle by default, we have to notice this, and
1068 try --no-cplus (linux) or --no-demangle when running nm.
1069
1070 Wed Dec 14 18:13:58 1994 Per Bothner <bothner@kalessin.cygnus.com>
1071
1072 * gen-params: To determine vt-name-mangling using dummy.C add
1073 #include and #prama interface/implementation to avoid problem with
1074 assemblers that don't emit local symbols. Reported under HPUX 8
1075 by Thomas Arend <arend@blasius.Chemietechnik.Uni-Dortmund.DE>.
1076
1077 * streambuf.h (ios::ios): Move inline definition after
1078 that of ios::init (which ios::ios calls).
1079
1080 Sun Dec 4 19:50:32 1994 Per Bothner <bothner@kalessin.cygnus.com>
1081
1082 * fileops.c (_IO_file_init, _IO_file_close_it, _IO_file_sync):
1083 Set _offset to _IO_pos_BAD, to support applications that follow
1084 POSIX.1 rules on mixing file handles.
1085
1086 * fileops.c (_IO_file_overflow): Handle case that buffer was
1087 allocated (perhaps by setvbuf) but _IO_write_base is still 0.
1088
1089 * iostdio.h (setbuffer): #define as _IO_setbuffer.
1090 * streambuf.h, filebuf.cc: Removed filebuf::do_write.
1091
1092 Tue Nov 29 23:38:57 1994 Per Bothner (bothner@rtl.cygnus.com)
1093
1094 * floatconv.c (setword0, setword1): Fix typo.
1095
1096 Tue Nov 29 15:37:29 1994 Per Bothner <bothner@kalessin.cygnus.com>
1097
1098 * config.shared: Move -fno-implicit-template from CXXFLAGS
1099 to LIBCXXFLAGS. Tests are better run without it.
1100
1101 * floatconv.c (word0, word1): Re-place/re-implement using unions
1102 instead of casts to avoid optimizer problems.
1103
1104 * dbz/dbzmain.c: Renamed dirname -> dir_name to avoid OSF
1105 header file braindamage.
1106
1107 Sat Nov 5 19:44:00 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1108
1109 * config.shared (LIBCFLAGS): Define.
1110 (LIBCXXFLAGS): Define.
1111 (DOING_LIBGXX): Define TOLIBGXX. Change LIBS to use -lg++. Add
1112 LD_LIBRARY_PATH and .EXPORT_ALL_VARIABLES:.
1113 (FLAGS_TO_PASS): Add LIBC{,XX}FLAGS.
1114 (XC{,XX}FLAGS): Set to LIBCFLAGS or CFLAGS depending on $LIBDIR.
1115 (COMPILE.c): Define, use in .c.o rule.
1116 (COMPILE.cc): Define, use in .cc.o rule.
1117
1118 Sat Nov 5 15:12:12 1994 Per Bothner <bothner@kalessin.cygnus.com>
1119
1120 * Makefile.in (VERSION): Update to 0.67.
1121
1122 * streambuf.h (ios::dont_close): Is now set by default.
1123 * fstream.h, fstream.cc (__fb_init): New function. Clears
1124 ios::dont_close. Change fstreambase constructors to call it.
1125 * strstream.cc: *strstream constructors must clear ios::dont_close.
1126 * iostream.cc: Simplify - don't need to set ios::dont_close.
1127 * ioassign.cc: Simplify - assume ios::dont_close is always set.
1128
1129 * fstream.h, fstream.cc: If _IO_NEW_STREAMS, put the
1130 filebuf as a member __my_fb.
1131 * strstream.{h,cc}: Likewile use a strstreambuf member __my_sb.
1132 * streambuf.h, stdstreams.cc, ioextend.cc:
1133 Fix if _IO_NEW_STREAMS to not use ios::dont_close.
1134
1135 * streambuf.h (class ios): Move rdbuf later, to avoid
1136 inability of g++ to inline.
1137 * filebuf.cc (filebuf::~filebuf): Call _IO_do_flush.
1138
1139 * config.shared: Emit rules to make depend.
1140 * depend: New file.
1141
1142 Fri Nov 4 17:19:11 1994 Per Bothner <bothner@kalessin.cygnus.com>
1143
1144 * README: Fix typos.
1145 * libio.h: Add comment. Update Copyright notice.
1146
1147 Fri Nov 4 21:46:30 1994 Paul Eggert <eggert@twinsun.com>
1148
1149 * libio.h (__P): Change argument name spelling from
1150 `paramlist' to `protos' for compatibility with BSDI 1.1.
1151
1152 Thu Nov 3 00:45:16 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1153
1154 * config.shared (CXXFLAGS): Add -fno-implicit-templates.
1155
1156 Mon Oct 24 15:57:35 1994 Per Bothner <bothner@kalessin.cygnus.com>
1157
1158 * config.shared: Define NOSTDIC and use it for libio too.
1159
1160 Thu Oct 20 19:45:35 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1161
1162 * iogetdelim.c: #include <stdlib.h>.
1163
1164 Thu Oct 20 17:09:52 1994 Per Bothner <bothner@kalessin.cygnus.com>
1165
1166 * iostream.h: Add classes _IO_istream_withassign and
1167 _IO_ostream_withassign. Re-type cin, cout, cerr, clog.
1168 (class iostream): Don't add extra _gcount field.
1169 * ioassign.cc: New file. Implement operator= for cin etc.
1170 * streambuf.h (class ios): Change return type of operator=.
1171 * Makefile.in (IOSTREAM_OBJECTS): Add ioassign.o.
1172
1173 * Makefile.in: Re-arrange, so linux.mt overrides can work.
1174
1175 * fileops.c (_IO_file_seekoff): Optimize seeks within buffer.
1176
1177 Wed Oct 19 14:25:47 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1178
1179 * gen-params (wint_t): Return to using __WCHAR_TYPE__ for
1180 compatibility with gcc versions prior to 2.6.1.
1181
1182 Tue Oct 18 17:08:18 1994 Per Bothner <bothner@kalessin.cygnus.com>
1183
1184 * Makefile.in: Define _G_CONFOG_H as _G_config.h for Linux. Use it.
1185 (IO_OBJECTS): Add iogetdelim.o.
1186 * config/linux.mt: New file.
1187 * configure.in: Select config/linux.mt if Linux.
1188 * iogetdelim.c: Verious cleanups, many from
1189 Ulrich Drepper <drepper@ipd.info.uni-karlsruhe.de>.
1190 * libioP.h: Add _IO_getdelim. Use (void) for no-parameter functions.
1191
1192 Thu Oct 13 16:30:56 1994 Per Bothner (bothner@kalessin.cygnus.com)
1193
1194 * libio.h: Rename USE_DTOA to _IO_USE_DTOA for namespace reasons.
1195 * iostream.cc, iovfscanf.c, iovfprintf, floatconv.c:
1196 Update USE_DTOA -> _IO_USE_DTOA.
1197
1198 * libio.h (_IO_feof, _IO_ferror): Move to here ...
1199 * iolibio: ... from here
1200
1201 * iostream.cc (istream::get, istream::ignore, istream::read):
1202 Set _gcount to 0 if ipfx0 failed.
1203
1204 * iostream.cc (flush): Do virtual function call, rather than
1205 going through jumptable. (To get correct method in derived class.)
1206 Bug and fix from John Wiegley <jw@cis.ohio-state.edu>.
1207
1208 * iofdopen.c (O_ACCMODE): Define using O_RDWR, not O_RDWRITE.
1209
1210 * streambuf.h (ios::rdbuf(streambuf*)): New.
1211 * streambuf.h (ios::operator=): Make private (i.e. dis-allow).
1212
1213 Wed Oct 12 19:09:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1214
1215 * gen-params: Define _G_NO_NRV and _G_NO_EXTERN_TEMPLATES if not
1216 compiling with g++.
1217
1218 Thu Oct 6 16:03:43 1994 Per Bothner (bothner@kalessin.cygnus.com)
1219
1220 * iostream.texi (ostrstream::str): Note that NUL is not written
1221 automatically.
1222
1223 Wed Oct 5 17:28:29 1994 Per Bothner (bothner@kalessin.cygnus.com)
1224
1225 * iogetdelim.c (_IO_getdelim): New function.
1226
1227 Wed Oct 5 15:40:22 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
1228
1229 * config/netware.mt: New file, first cut at Netware NLM support.
1230 * configure.in (*-*-netware*): Use config/netware.mt.
1231
1232 * config.shared (NLMCONV, LD): New definition.
1233
1234 * gen-params: check for nm in ${binutils}/nm.new.
1235 * config.shared: Likewise.
1236
1237 Tue Oct 4 12:20:01 1994 Per Bothner (bothner@kalessin.cygnus.com)
1238
1239 * iomanip.h (omanip::operator<<): Make 2nd arg be const.
1240 Bug and fix reported by Greg McGary <gkm@magilla.cichlid.com>.
1241
1242 * strstream.cc (strstreambuf::pcount): Simplify, to match
1243 ANSI/ISO specification.
1244
1245 Mon Sep 26 15:19:52 1994 Jason Merrill (jason@deneb.cygnus.com)
1246
1247 * gen-params: Include <wchar.h> and <wctype.h> if they exist.
1248
1249 Thu Sep 8 14:41:41 1994 Jason Merrill (jason@deneb.cygnus.com)
1250
1251 * iostream.h (class istream): Declare operator>>(long double&).
1252 (class ostream): Define operator<<(long double).
1253
1254 * iostream.cc (istream::operator>>(long double&)): Define.
1255
1256 Wed Sep 7 14:42:29 1994 Per Bothner (bothner@kalessin.cygnus.com)
1257
1258 * iostream.texi (Overflow): Fix bugs in example.
1259
1260 Fri Sep 2 17:45:57 1994 Per Bothner (bothner@kalessin.cygnus.com)
1261
1262 * iostream.tex: Document a little on how to write your
1263 own streambuf-derived class, with an example.
1264
1265 Tue Aug 30 13:03:57 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
1266
1267 * floatconv.c (s2b): Declare X and Y to be _G_int32_t.
1268 (diff, quorem): Declare BORROW, Y, and Z likewise.
1269 (ulp): Declare L likewise.
1270 (_IO_strtod): Declare L and AADJ likewise.
1271 (_IO_dtoa): Declare L and D likewise. Cast division of D by DS to
1272 _G_int32_t.
1273
1274 Mon Aug 29 16:01:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
1275
1276 * iosetvbuf.c (_IO_setvbuf): If setting _IOFBF and no
1277 buffer was specified, call __doallocate.
1278
1279 * fileops.c, floatconv.c: Add a bunch of parentheses to
1280 shut up gcc warnings. Patch from H.J.Lu.
1281
1282 * stdiostream.cc (stdiobuf::sys_read): Inline call to getc
1283 for the normal case (size==1).
1284
1285 Sat Aug 20 12:14:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
1286
1287 * Makefile.in (VERSION): Increase to 0.66.
1288
1289 Fri Aug 19 17:28:41 1994 Per Bothner (bothner@kalessin.cygnus.com)
1290
1291 * iolibio.h: Added _IO_printf prototype.
1292 Added extern "C" { ... } wrappers #ifdef __cplusplus.
1293 Bugs reported by Neal Becker <neal@ctd.comsat.com>.
1294
1295 Wed Aug 17 18:17:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
1296
1297 * fileops.c (_IO_file_seekoff): For _IO_seek_cur, adjust for
1298 read-ahead before jumping to label dumb.
1299
1300 Wed Aug 3 13:15:01 1994 H.J. Lu (hjl@nynexst.com)
1301
1302 * libioP.h (CHECK_FILE(FILE,RET)): new, which checks for
1303 FILE == NULL and _IO_MAGIC_MASK.
1304 (COERCE_FILE(FILE)): merged into CHECK_FILE(FILE,RET)
1305 with typo fixes.
1306
1307 * iofread.c, iofwrite.c: add CHECK_FILE(fp, 0);
1308 * iofclose.c: add CHECK_FILE(fp, EOF); remove _IO_MAGIC_MASK check.
1309
1310 * iofflush.c, iofgetpos.c, iofputs.c, iofscanf.c,
1311 iofsetpos.c, iofvbuf.c, ioungetc.c:
1312 Add CHECK_FILE(fp, EOF) and remove COERCE_FILE(fp).
1313
1314 * iofgets.c: add CHECK_FILE(fp, NULL) and remove COERCE_FILE(fp).
1315 * iofprintf.c: add CHECK_FILE(fp, -1) and remove COERCE_FILE(fp).
1316 * ioftell.c: add CHECK_FILE(fp, -1L) and remove COERCE_FILE(fp).
1317 * iosetbuffer.c: add CHECK_FILE(fp, ) and remove COERCE_FILE(fp).
1318
1319 Fri Aug 12 15:35:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
1320
1321 * iofdopen.c (_IO_fdopen): #define O_ACCMODE if it isn't.
1322 Still set O_APPEND if "a" is given, but don't unset it
1323 if it isn't. Added comment.
1324
1325 Mon Aug 8 13:11:00 1994 Per Bothner (bothner@kalessin.cygnus.com)
1326
1327 * gen-params (VTABLE_LABEL_PREFIX): Changes in the implementation.
1328 For look for _*vt[$_.]7*filebuf in the nm output, because that
1329 matches what g++ produces and has produced. Thus it should be
1330 somewhat more robust.
1331
1332 Sun Aug 7 22:52:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
1333
1334 * gen-params (CC): Remove no-longer-needed -I options
1335 passed to xgcc (now they are implied by the -B options).
1336
1337 Wed Jul 20 16:41:13 1994 Per Bothner (bothner@kalessin.cygnus.com)
1338
1339 * Makefile.in (tooldir): Added definition, so we can do
1340 'make install' in this directory.
1341 Bug reported by Klamer Schutte <schutte@tpd.tno.nl>.
1342
1343 Mon Jul 18 18:02:34 1994 Per Bothner (bothner@kalessin.cygnus.com)
1344
1345 * gen-params (VTABLE_LABEL_PREFIX): Remove filename sppearing
1346 by itself. Add comment explaining what is going on.
1347
1348 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@jalod)
1349
1350 * libio.h: define _IO_uid_t and _IO_HAVE_ST_BLKSIZE
1351 as _G_xxxxxxxx.
1352
1353 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@jalod)
1354
1355 * iopopen.c: Don't include <errno.h>. It is included in "libioP.h".
1356
1357 * iopopen.c (_IO_proc_close) : check if fp is on the list
1358 before close it.
1359
1360 Thu Jul 14 16:38:47 1994 Per Bothner (bothner@kalessin.cygnus.com)
1361
1362 * gen-params (CONFIG_NM): Make sed scripts to find vtable name
1363 mangling more robost for different forms of nm output.
1364
1365 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@jalod)
1366
1367 * iofopen.c (_IO_fopen): don't check [redundantly] fp == NULL after
1368 IO_file_init(&fp->_file).
1369
1370 * iomanip.h (template<class TP> class iapp):
1371 change ostream to istream.
1372
1373 Tue Jul 12 14:09:02 1994 Per Bothner (bothner@kalessin.cygnus.com)
1374
1375 * Makefile.in (VERSION): Increase to 0.65.
1376 * libioP.h (builtinbuf_vtable): Only define #ifdef __cplusplus.
1377
1378 * gen-params (_G_int8_t): Only define if defined(__STDC__),
1379 because K&R C compilers don't have signed char.
1380 (_G_int64_t, _G_uint64_t): Only define if defined(__GNUC__)
1381 because other compilers may not have long long.
1382
1383 Sun Mar 06 13:10:21 1994 H.J. Lu (hjl@nynexst.com)
1384
1385 * floatconv.c (_IO_dtoa ()): fix a small memory leak, set the
1386 "on_stack" field to be 0 if "result" is not NULL.
1387
1388 Sat Mar 05 13:18:20 1994 H.J. Lu (hjl@nynexst.com)
1389
1390 * floatconv.c (_IO_dtoa ()): if the number of digits of the
1391 floating point number is more than the previous one, free the
1392 old string and allocate a new one.
1393 [Minor optimization to avoid Bcopy. -PB]
1394
1395 Mon Jul 11 10:53:41 1994 Per Bothner (bothner@kalessin.cygnus.com)
1396
1397 * fileops.c (_IO_file_underflow): 'count' should be unsigned,
1398 since it contains the return value of read. Reported by
1399 Teemu Torma <tot@trema.fi>.
1400
1401 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@nynexst.com)
1402
1403 * floatconv.c (_IO_strtod ()): make "+" and "-" as error.
1404
1405 Sat Jul 9 15:09:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
1406
1407 Make sure _IO_FILE::_flags is always initialized correctly, for the
1408 C functions (fopen, fdopen, popen), and not just the C++ functions.
1409 * fileops.c (_IO_file_init): Set _flags to CLOSED_FILEBUF_FLAGS.
1410 * fileops.c (_IO_file_fopen): Remove bogus assignment.
1411 * filebuf.cc (filebuf constructors): Don't pass CLOSED_FILEBUF_FLAGS
1412 to streambuf constructor - _IO_file_init does it instead.
1413 * filebuf.cc (CLOSED_FILEBUF_FLAGS): Removed.
1414 * iopopen.c (_IO_proc_open): Use _IO_mask_flags.
1415
1416 Thu Jun 30 08:49:53 1994 Jason Merrill (jason@deneb.cygnus.com)
1417
1418 * dbz/Makefile.in (mostlyclean): Add target.
1419
1420 Wed Jun 29 09:30:12 1994 Jason Merrill (jason@deneb.cygnus.com)
1421
1422 * gen-params: Woops, can't run a C program to determine target
1423 characteristics. Sigh.
1424
1425 Tue Jun 28 03:11:33 1994 Jason Merrill (jason@deneb.cygnus.com)
1426
1427 * gen-params: Add _G_{,u}int{8,16,64}_t, use a short C program to
1428 determine what all these should be rather than trying to compare
1429 the MAX numbers in the shell.
1430
1431 Sun Jun 26 21:04:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
1432
1433 * stdiostream.h, stdiostream.cc (stdiobuf::xsgetn): Removed.
1434 Too hairy. If we want to optimize it, we should do so in
1435 filebuf::xsgetn (or rather _IO_file_xsgetn).
1436
1437 * stdiostream.h (class stdiobuf), stdiostream.cc: Fix parameter
1438 and return types of virtual function to matcher base types (Oops!).
1439 * streamstream.cc (stdiobuf::xsgetn, stdiobuf::xsputn):
1440 Optimize to call fread.fwrite directly if !buffered.
1441 * fileops.c: Fix comment.
1442
1443 Fri Jun 24 11:28:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
1444
1445 * stdiostream.h (istdiostream, ostdiostream): New classes.
1446
1447 More robust final cleanup.
1448 * cleanup.c (_IO_register_cleanup): Register _IO_cleanup,
1449 rather than _IO_flush_all.
1450 * filedoalloc.c: Update comment.
1451 * genops.c (_IO_unbuffer_all): New. Makes all files unbuffered.
1452 * genops.c (_IO_cleanup), libioP.h: New function. Call
1453 _IO_flush_all, and then _IO_unbuffer_all. This is in case C++
1454 destructors try to do output *after* _IO_cleanup is called.
1455
1456 Construct standard stdiobufs statically (using type punning).
1457 * stdstrbufs.c; Unless _STDIO_USES_IOSTREAM declare standard
1458 stdiobufs (for stdin, stdout, and stderr), using type punning
1459 (struct _IO_fake_stdiobuf). This avoids constructor-time problems.
1460 * stdstreams.cc: Remove the declarations of the stdiobufs.
1461 Instead use the new (fake) ones in stdstrbufs.cc. We no longer
1462 have to call ios::sync_with_stdio at constructor time.
1463
1464 Preliminary support for new ANSI streambuf::uflow virtual.
1465 * libioP.h (struct _IO_jump_t): Add __uflow field.
1466 * genops.c (_IO_default_uflow), libioP.h: New function.
1467 * fileops.c (_IO_file_jumps), iopopen.c (IO_proc_jumps),
1468 iovfprintf.c (_IO_helper_jumps), strops.c (_IO_str_jumps),
1469 streambuf.cc (_IO_streambuf_jumps): Add _IO_default_uflow.
1470 * genops.c (__uflow): New function.
1471 (save_for_backup): New function. Some code shared by
1472 __underflow and __uflow, moved out from the former.
1473 (_IO_default_uflow): New function.
1474 * libio.h (_IO_getc): Call __uflow, not __underflow.
1475
1476 Wed Jun 22 20:22:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
1477
1478 Make sure that the vtable of a streambuf is always valid,
1479 which makes ios::rdbuf simpler and faster.
1480 * gen-params: Add code to determine _G_VTABLE_LABEL_HAS_LENGTH,
1481 _G_VTABLE_LABEL_PREFIX, _G_VTABLE_LABEL_PREFIX_ID, and
1482 _G_USING_THUNKS, which describe how virtual function tables are named.
1483 * stdfiles.c (FILEBUF_LITERAL): Moved to libioP.h.
1484 * libioP.h (builtinbuf_vtable): New (complicated) declaration.
1485 * filebuf.cc (filebuf::__new), strstream.cc (SET_STR_JUMPS):
1486 Initialize vtable to builtinbuf_vtable, not NULL.
1487 * stdstrbufs.cc: New file. Same as stdfiles.c, except that
1488 vtable is initialized to builtinbuf_vtable, not NULL.
1489 * streambuf.h (ios::rdbuf): Can now simplify/optimize, due to
1490 above changes. Always, just return _strbuf.
1491 * builtinbuf.h, builtinbuf.cc (builtinbuf::vtable,
1492 builtinbuf::get_builtin_vtable): Removed. No longer needed.
1493 * streambuf.h, builtinbuf.cc (ios::_IO_fix_vtable): No longer needed.
1494 Only defined #ifdef _STREAM_COMPAT, for binary compatibility.
1495 * Makefile.in: Move stdfiles.o from IO_OBJECTS to STDIO_WRAP_OBJECTS.
1496 (IOSTREAM_OBJECT): Add stdstrbufs.o.
1497 * Makefile.in (_G_config.h): Pass $(CXXFLAGS) as part of $(CXX).
1498
1499 Fri Feb 11 11:08:01 1994 SBPM Marc GINGOLD (marc@david.saclay.cea.fr)
1500
1501 * iovfprintf.c (helper_vfprintf): add
1502 hp->_IO_file_flags = _IO_MAGIC|(_IO_IS_FILEBUF+_IO_NO_READS);
1503 [This is needed because _IO_vfprintf checks for _IO_UNBUFFERED. -PB]
1504 [Actually: don't set _IO_IS_FILEBUF. -PB]
1505
1506 Wed Jun 22 13:49:22 1994 Per Bothner (bothner@kalessin.cygnus.com)
1507
1508 * stdiostream.cc, stdiostream.h (stdiobuf::buffered): New methods.
1509
1510 * iofdopen.c (_IO_fdopen): Various minor improvements.
1511
1512 * iovfscanf.c: Don't return EOF on control_failure.
1513
1514 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@nynexst.com)
1515
1516 * iovfscanf.c: Enforce the sequence of the conversion specifications.
1517
1518 Fri Jun 17 20:57:22 1994 Per Bothner (bothner@kalessin.cygnus.com)
1519
1520 * iofdopen.c: Use fcntl to check that requested access mode is
1521 compatible with existing access mode, and to change the
1522 O_APPEND file status flag if need be.
1523
1524 Thu Jun 16 17:33:50 1994 Per Bothner (bothner@kalessin.cygnus.com)
1525
1526 * streambuf.h (ios::init): Initialize all the fields.
1527 This may be overkill, but the current ANSI working paper requires it.
1528 * streambuf.h (ios::ios): Reimplement in terms of ios::init.
1529 * iostream.cc (Non-default constructors istream::istream,
1530 ostream::ostream, iostream::iostream): Cannot use a mem-initializer,
1531 because it is ignored if initializing a derived class. Instead,
1532 call ios::init.
1533
1534 Wed Jun 15 13:35:37 1994 Per Bothner (bothner@kalessin.cygnus.com)
1535
1536 * stdstreams.cc (ISTREAM_DEF): Fix typo (it's a _fake_istream, not
1537 a _fake_ostream). Reported by Jason Shirk <jshirk@gomez.intel.com>.
1538
1539 * stdiostream.h, stdiostream.cc (stdiobuf::~stdiobuf): New.
1540 Call _IO_do_flush.
1541 * stdiostream.cc (stdiobuf::sync): Call _IO_do_flush rather
1542 than filebuf::sync (to avoid bad seeks).
1543
1544 * libioP.h (_IO_do_flush): Add missing parentheses.
1545
1546 Fri Jun 3 19:16:57 1994 Jason Merrill (jason@deneb.cygnus.com)
1547
1548 * config.shared (CXXFLAGS): Remove -fno-implicit-templates.
1549
1550 * iomanip.h: Add explicit external instantiations.
1551
1552 Wed Jun 1 14:14:44 1994 Per Bothner (bothner@kalessin.cygnus.com)
1553
1554 * libio.h (struct _IO_FILE_plus): Move definition from here ...
1555 * libioP.h (struct _IO_FILE_plus): ... to here. Since this
1556 file is private to the implementation, we can rename the fields
1557 from the implementor's to the user's name anme space.
1558 (This avoids a lossage on SCO, whose stdio.h has a #define _file.)
1559 * iofdopen.c, iofopen.c, stdfiles.c: Fix field references accordingly.
1560 * iopopen.c (struct_IO_proc_file): Rename fields from
1561 implementor's name space to user's, and update usages.
1562 * streambuf.h (streambuf::_vtable): Re-implement to not need
1563 struct _IO_FILE_plus.
1564 * strfile.h (struct _IO_strfile_): Likewise.
1565
1566 Wed Jun 1 13:57:48 1994 Jason Merrill (jason@deneb.cygnus.com)
1567
1568 * config.shared (CXXFLAGS): Use -fno-implicit-templates instead of
1569 -fexternal-templates.
1570
1571 Tue May 31 08:49:28 1994 Mike Stump (mrs@cygnus.com)
1572
1573 * genops.c, iofclose.c, iofdopen.c, iofopen.c, iopopen.c: Be
1574 consistent about protecting #include <stdlib.h>.
1575
1576 * ioputs.c: Add #include <string.h>, to avoid warning on alpha.
1577
1578 * iofdopen.c: Add #include <stdlib.h>, so that malloc works on
1579 machines where sizeof(int) != sizeof(void *).
1580
1581 Mon May 30 17:26:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
1582
1583 * pfstream.cc (ipfstream::ipfstream, opfstream::opfstream):
1584 Reverse sense of test of return value of procbuf::open.
1585 (It returns NULL on failure.)
1586
1587 * filedoalloc.c (_IO_file_doallocate): Remove dead code for
1588 USE_MALLOC_BUF. Add code to return EOF if ALLOC_BUF fails.
1589
1590 Sat May 28 13:47:47 1994 Jason Merrill (jason@deneb.cygnus.com)
1591
1592 * iomanip.cc: Explicitly instantiate smanip<int> and
1593 smanip<ios::fmtflags>.
1594
1595 Wed May 25 16:04:12 1994 Per Bothner (bothner@kalessin.cygnus.com)
1596
1597 * strfile.h: Use __P instead of _PARAMS.
1598
1599 Fri May 20 11:42:17 1994 Per Bothner (bothner@kalessin.cygnus.com)
1600
1601 * libio.h: Rename _PARAMS macro to __P for better glibc and BSD
1602 compatibility. (Also define _PARAMS for backwards compatibility.)
1603 * cleanup.c, iolibio.h, ioperror.c, iovfprintf.c, iovfscanf.c,
1604 libioP.h: Use __P instead of _PARAMS.
1605 * iostdio.h: Use __P instead of _ARGS.
1606
1607 * fileops.c (_IO_file_read): Minor stylistic tweak. (It is
1608 preferable to test errno *after* the error return.)
1609
1610 Fri May 13 15:25:36 1994 Jason Merrill (jason@deneb.cygnus.com)
1611
1612 * iostream.*: Add insertor and extractor for bool (just pretend
1613 it's an int).
1614
1615 Fri May 13 14:12:03 1994 Mike Stump (mrs@cygnus.com)
1616
1617 * gen-params: Check for builtin bool support.
1618
1619 Wed May 11 00:48:35 1994 Jason Merrill (jason@deneb.cygnus.com)
1620
1621 Make libg++ build with gcc -ansi -pedantic-errors
1622 * gen-params: #ifdef __STRICT_ANSI__, #define _G_NO_NRV.
1623 * pfstream.cc (ipfstream::ipfstream): Wrap use of variable-size
1624 array in #ifndef __STRICT_ANSI__.
1625
1626 Fri May 6 12:42:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
1627
1628 * Makefile.in (VERSION): Increase to 0.64.
1629
1630 * isgetline.cc (istream::getline): The delimiter should *not*
1631 be included in the gcount().
1632
1633 * filedoalloc.c: #include <stdlib.h> (If __STDC__) to get malloc.
1634 * iostream.h (ostream::put): Remove overloaded versions, to match
1635 new working paper. (Actually just put inside _STREAM_COMPAT, for now.)
1636
1637 Tue May 3 14:14:57 1994 Per Bothner (bothner@kalessin.cygnus.com)
1638
1639 * genops.c (_IO_default_finish): Make robust when called
1640 multiple times on the same _IO_FILE*. (One way this can
1641 happen is by the builtinbuf destructor being followed by the
1642 streambuf destructor.)
1643
1644 Mon May 2 13:55:26 1994 Jason Merrill (jason@deneb.cygnus.com)
1645
1646 * gen-params: Actually determine wint_t rather than depending on
1647 cpp to provide it or defaulting to the underlying type for
1648 wchar_t.
1649
1650 Sat Apr 30 14:47:30 1994 Jason Merrill (jason@deneb.cygnus.com)
1651
1652 * gen-params: Add _G_wint_t, allow __*_TYPE__ to override values
1653 at compile time, fix definition of _G_ARGS.
1654
1655 Fri Apr 29 16:55:37 1994 Per Bothner (bothner@kalessin.cygnus.com)
1656
1657 * libio.h: Remove #pragma interface. (There is no implementation.)
1658
1659 Mon Mar 28 14:22:26 1994 Per Bothner (bothner@kalessin.cygnus.com)
1660
1661 * iostream.cc (ostream::operator<<(double)): Add/fix support
1662 for printing '+' when ios::showpos is set.
1663 (Fixes bug reported by Doug Moore <dougm@cs.rice.edu>.)
1664 * iostream.cc (istream::read): Set eofbit as well as failbit on eof.
1665 * iostream.cc (ostream::operator<<(int)): Fix conversion
1666 to unsigned (used to lose on INT_MIN).
1667 * iostream.cc (ostream::operator<<(long)): Use (unsigned long),
1668 rather than (unsigned) for temporary.
1669
1670 * config.shared, Makefile.in: Remove definitions and uses
1671 of XTRAFLAGS. It is no longer needed, since it is
1672 now implied by the -B flag.
1673
1674 Fri Mar 25 00:31:22 1994 Jason Merrill (jason@deneb.cygnus.com)
1675
1676 * builtinbuf.h: Add put /**/ around comment on trailing #endif.
1677
1678 * Makefile.in (c++clean): Make clean in tests subdir, too.
1679
1680 Wed Mar 23 16:42:09 1994 Doug Evans (dje@canuck.cygnus.com)
1681
1682 * configure.in: Remove Makefile.tem before creating it.
1683 Needed when configuring from read-only source trees.
1684
1685 Wed Mar 16 14:06:42 1994 Per Bothner (bothner@kalessin.cygnus.com)
1686
1687 * stdstreams.cc: Fix so that stdiobuf are used for cin/cout/cerr,
1688 unless _STDIO_USES_IOSTREAM is defined.
1689 * filebuf.cc (filebuf::setbuf): Fix confusion about return
1690 value from _IO_file_setbuf.
1691
1692 Sun Mar 13 00:54:12 1994 Paul Eggert (eggert@twinsun.com)
1693
1694 * config.shared: Ensure that `all' precedes `.PHONY';
1695 BSDI 1.1 needs this.
1696
1697 Sat Mar 12 03:58:00 1994 Paul Eggert (eggert@twinsun.com)
1698
1699 * config.shared: Output a definition of INSTALL that uses
1700 $${rootme}, not ${rootme}. Most `make's don't care, but BSDI
1701 1.1 `make' does.
1702
1703 Fri Mar 4 17:33:01 1994 Per Bothner (bothner@kalessin.cygnus.com)
1704
1705 * iopopen.c: #define _POSIX_SOURCE.
1706 * isgetline.c (istream::getline): Various fixes.
1707
1708 Thu Mar 3 17:58:20 1994 Per Bothner (bothner@kalessin.cygnus.com)
1709
1710 * iostream.cc (write_int): Fix test for when to add initial '0'
1711 when ios::oct and ios::showbase are set.
1712 For hex, showbase adds initial 0x (or 0X) regardless of val==0.
1713 Bugs reported by Phil Roth <proth@cs.uiuc.edu>.
1714
1715 Mon Feb 21 13:18:20 1994 H.J. Lu (hjl@nynexst.com)
1716
1717 * libio.h (_IO_PENDING_OUTPUT_COUNT(_fp)): return the
1718 pending output count in _fp.
1719
1720 Fri Feb 25 09:26:57 1994 Ian Lance Taylor (ian@cygnus.com)
1721
1722 * gen-params: For HAVE_SYS_WAIT, compile dummy.c, not dummy.C.
1723
1724 Tue Feb 22 11:19:09 1994 Per Bothner (bothner@kalessin.cygnus.com)
1725
1726 * streambuf.h, genops.c, libioP.h: Rename references to
1727 _IO_FILE fields other_gbase => _IO_save_base,
1728 _aux_limit => _IO_backup_base, and _other_egptr => _IO_save_end.
1729 * libio.h: Remove no-longer needed macros _other_gbase,
1730 _aux_limit, and _other_egptr.
1731 * genops.c (__underflow, _IO_default_finishh, _IO_unsave_markers):
1732 Check _IO_save_base for NULL before FREEing it or calling
1733 _IO_free_backup_area.
1734
1735 Thu Feb 17 15:26:59 1994 Per Bothner (bothner@kalessin.cygnus.com)
1736
1737 * gen-params: Improve deduction of _G_uint32 and _G_int32.
1738 Should now work for 16-bit, 32-bit, or 64-bit targets.
1739 * gen-params: Check for sys/wait.h using ${CC}, since it's
1740 now used in a C file, not a C++ file.
1741 * floatconv.c: Typedef _G_uint32_t as unsigned32, and use
1742 unsigned32 in place of unsigned long. (Needed for Alpha.)
1743
1744 Tue Feb 8 13:40:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
1745
1746 * fileops.c (_IO_file_close_it): Simplify by using _IO_do_flush.
1747 * fileops.c (_IO_file_finish): Don't call _IO_file_close_it -
1748 do it inline. Call _IO_do_flush even if _IO_DELETE_DONT_CLOSE.
1749 * fileops.c (_IO_file_attach): Set _IO_DELETE_DONT_CLOSE.
1750 * genops.c (_IO_flush_all): Only call overflow if there is
1751 something to write.
1752 * iofclose.c (_IO_fclose): Check that magic number is correct,
1753 and clear it when done. Avoids crashing some buggy applications.
1754 * iogetline.c (_IO_getline): Don't gratuitously increment old_len.
1755 * iogets.c (_IO_gets): Take care to get required ANSi semantics.
1756
1757 Sun Feb 6 19:50:39 1994 Jason Merrill (jason@deneb.cygnus.com)
1758
1759 * iomanip.cc: Explicitly instantiate operator<< and >>.
1760
1761 Fri Feb 4 12:28:22 1994 Jason Merrill (jason@deneb.cygnus.com)
1762
1763 * config.shared (CXXFLAGS): Use -fexternal-templates.
1764
1765 * iomanip.h: Uncomment #pragma interface.
1766
1767 Thu Jan 20 13:48:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
1768
1769 If no characters are read by fgets, ANSI C doesn't allow '\0' to
1770 be written to the buffer, but it is required by ANSI C++
1771 for istream::get and istream::getline. Both use _IO_getline ...
1772 * iogetline.c (_IO_getline): Don't write a '\0' at the end
1773 of the read data. The input buffer length does not include
1774 space for a '\0'.
1775 * iofgets.c, iogets.c: Change appropriately.
1776 Also check for _IO_ERR_SEEN, as required by ANSI.
1777 * isgetline.cc: Update accordingly.
1778
1779 Mon Jan 17 13:24:26 1994 Jason Merrill (jason@deneb.cygnus.com)
1780
1781 * Makefile.in (c++clean): Added target for compiler testing
1782 (i.e. make c++clean all).
1783
1784 Mon Jan 10 11:20:42 1994 Per Bothner (bothner@kalessin.cygnus.com)
1785
1786 * libio.h (_IO_putc): Add parentheses.
1787 Patch from Rik Faith <faith@cs.unc.edu>.
1788
1789 Tue Jan 4 01:32:28 1993 Hongjiu Lu (hjl@nynexst.com)
1790
1791 * genops.c (_IO_default_xsputn):
1792 (_IO_default_xsgetn):
1793 * ioignore.c: change "_IO_size_t count" to
1794 "_IO_ssize_t count".
1795 * iogetline.c: change "_IO_size_t len" to
1796 "_IO_ssize_t len".
1797
1798 Mon Dec 20 00:31:21 1993 Per Bothner (bothner@kalessin.cygnus.com)
1799
1800 * config.shared (CXXINCLUDES): Fix quoting of $(NOSTDINC).
1801
1802 Sun Dec 19 21:03:45 1993 Per Bothner (bothner@kalessin.cygnus.com)
1803
1804 * Makefile.in (VERSION): Increase to 0.63.
1805
1806 Fri Dec 17 13:02:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
1807
1808 * iofread.c (_IO_fread): Return 0 if either size or count is 0.
1809 * iofwrite.c (_IO_fwrite): Return 0 if either size or count is 0.
1810 (This is consistent with fread, and most implementations, but not
1811 with a literal reading of the ANSI spec.)
1812 * iovfscanf.c (_IO_vfscanf): If got EOF while skipping spaces,
1813 set seen_eof and break (instead of returning).
1814 * sbscan.cc (streambuf::vscan): Set error state before returning.
1815 * streambuf.h: Add a forward declarations for class istream
1816 to work around a g++ vtable name mangling bug. (Patch from
1817 harry@pdsrc.hilco.com via Jeffrey A Law <law@snake.cs.utah.edu>.)
1818 * NEWS: New file.
1819
1820 Sat Dec 11 16:21:08 1993 Per Bothner (bothner@kalessin.cygnus.com)
1821
1822 * iovfprintf.c (struct helper_file, _IO_helper_overflow,
1823 helper_vfprintf, _IO_helper_jumps): New structs and functions.
1824 (_IO_vfprintf): Use helper_vfprintf to make printing to
1825 unbuffered files more efficient.
1826 * genops.c (_IO_default_underflow), libioP.h: New function.
1827
1828 * iovsscanf.c (_IO_vsscanf): The input string's length marks
1829 its logical end-of-file.
1830
1831 Wed Dec 8 13:20:46 1993 Per Bothner (bothner@kalessin.cygnus.com)
1832
1833 * indstream.cc (indirectbuf::sync()): Don't crash if get_stream()
1834 or put_stream() are NULL; sync() both streams even if error.
1835
1836 Sun Dec 5 19:24:29 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
1837
1838 * iostreamP.h (convert_to_seekflags): Use _IO_seek_set instead of
1839 0 inside the conditial expressions.
1840
1841 * iofsetpos.c (_IO_fsetpos): Delete unused var `pos'.
1842
1843 Sat Dec 4 15:57:26 1993 Per Bothner (bothner@kalessin.cygnus.com)
1844
1845 * filedoalloc.c (_IO_file_doallocate): Change type of couldbetty
1846 to int, and type of size to _IO_size_t, instead of size_t.
1847 (Change needed for Ultrix, which incorrectly deliberately doesn't
1848 define size_t in <sys/types.h> if _POSIX_SOURCE is defined.)
1849
1850 Thu Dec 2 22:43:03 1993 Per Bothner (bothner@kalessin.cygnus.com)
1851
1852 * fileops.c (_IO_file_finish): Remove redundant call to _IO_un_link.
1853 * iofclose.c (_IO_fclose): Don't call fp->_jumps->__close; it's
1854 too low-level. Instead call _IO_file_close_it.
1855 * dbz/Makefile.in (rclean, distclean): Add some missing files.
1856
1857 Wed Dec 1 13:19:14 1993 Per Bothner (bothner@kalessin.cygnus.com)
1858
1859 * config/hpux.mt (MATH_H_INLINES): No longer define.
1860 Patch from Jeffrey A Law <law@snake.cs.utah.edu>.
1861
1862 Fri Nov 26 13:28:36 1993 Per Bothner (bothner@kalessin.cygnus.com)
1863
1864 * config.shared (CINCLUDES): Define default if libg++.
1865 * iofread.c: Use _IO_sgetn.c.
1866 * iolibio.h (_IO_clearerr): Fix typo.
1867 * genops.c (_IO_seekmark): Return 0 on success.
1868 * floactconv.c (Binit): Change to static.
1869 * iofclose.c (_IO_fclose): Check if file is _IO_stdin, _IO_stdout,
1870 or _IO_stderr; if so don't try to free it. Fix from hjl@nynexst.com.
1871
1872 * genops.c (_IO_default_sync), libioP.h: New function.
1873 * libioP.h (_IO_default_close): Use _IO_default_sync -same interface.
1874
1875 * Makefile.in: Increase version to 0.62.
1876 * iopopen.c (_IO_proc_close): Use waitpid (available in libibarty,
1877 if needed), rather than wait. Don't block/ignore SIGINT etc,
1878 as this is counter to Posix.2.
1879 * iopopen.c: Chain open proc_files, and have the child close
1880 the ones that are open (as required by Posix.2).
1881
1882 * fstream.h (fstreambase::rdbuf), strstream.h (strstreambase
1883 ::rdbuf): Call ios::rdbuf() instead of getting _strbuf directly.
1884
1885 * sbscan.cc (streambuf::vscan): Comment out duplicate default arg.
1886 * floatconv.c: Recognize Alpha and i860 as little-endian.
1887 * streambuf.cc: Return two bogus value returns from void functions.
1888 * iolibio.h, iofwrite.c: Fix buffer type to (const void*).
1889 * libio.h: Predefine of struct _IO_FILE to help non-g++-compilers.
1890 * libioP.h, pfstream.cc, stdfiles.c, iovfscanf.c: Cleanup syntax junk.
1891 * stdstreams.cc: Minor simplification.
1892 * streambuf.h, builtinbuf.cc: Add non-const ios::_IO_fix_vtable()
1893 for temporary binary compatibility.
1894
1895 * filedoalloc.c, fileops.c: Add _POSIX_SOURCE.
1896 * fileops.c, iofopen.c, iofputs.c, iostream.cc, strops.c,
1897 strstream.cc, genops.c: Add some missing #includes.
1898 * iofopen.c, iofdopen.c: Return NULL if malloc fails.
1899 * iovfscanf.c: Fix return type in strtol prototype.
1900 * fwrite.c: Remove bogus file.
1901
1902 Wed Nov 17 14:09:42 1993 Per Bothner (bothner@cygnus.com)
1903
1904 * builtinbuf.cc (ios::_IO_fix_vtable), streambuf.h: Make method
1905 const, to reduce problems with -Wcast-qual.
1906
1907 Tue Nov 16 19:30:42 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
1908
1909 * config.shared (CXXINCLUDE): use ${} instead of $() for NOSTDINC
1910
1911 Tue Nov 16 14:15:45 1993 Per Bothner (bothner@kalessin.cygnus.com)
1912
1913 * iopopen.c (_IO_proc_close): Re-structure to avoid
1914 declarations after statements.
1915 * floatconv.c: If not __STDC__, #define DBL_MANT_DIG.
1916 * config/isc.mt (G_CONFIG_ARGS): Remove bogus spaces.
1917 Patch from David A. Avery <daa@nic.cerf.net>.
1918
1919 Tue Nov 16 15:58:31 1993 Mark Eichin (eichin@cygnus.com)
1920
1921 * Makefile.in (_G_config.h): explicitly use $(SHELL) to run
1922 gen-params, since we know it is a script (we're explicitly looking
1923 in ${srcdir} for it) and /bin/sh might not be good enough.
1924
1925 Mon Nov 15 13:26:22 1993 Per Bothner (bothner@kalessin.cygnus.com)
1926
1927 * builtinbuf.cc: Don't depend on initialization of static
1928 variable builtinbuf::vtable, since that might happen after
1929 we need it (for a static constructor). Instead, initialize
1930 it when needed by inlining the code from get_builtin_vtable
1931 into ios::_IO_fix_vtable().
1932
1933 * floatconv.c: Avoid using #elif, which some C compilers lack.
1934 * iogetline.c, libioP.h: Make char parameter be int, to avoid
1935 some default promotion anomalies.
1936
1937 Fri Nov 5 11:49:46 1993 Per Bothner (bothner@kalessin.cygnus.com)
1938
1939 * config.shared (do-clean-dvi): Remove TeX work files.
1940 * iopopen.c (extern _IO_fork): Don't use parameter type void.
1941 * strops.c (_IO_str_init_static): Clear the allocate_buffer
1942 function pointer, to mark the strfile as being static.
1943 Bug fix from Mike Raisbeck <mike@pudding.rtr.COM>.
1944
1945 Thu Nov 4 10:44:24 1993 Per Bothner (bothner@kalessin.cygnus.com)
1946
1947 * filebuf.cc (filebuf:): Use sseekoff rather than seekoff
1948 (which loses if vtable pointer is NULL).
1949
1950 * iostream.cc (ostream::operator<<(long long n)): Fix thinko.
1951
1952 * Makefile.in (VERSION): Increase to 0.60.
1953 * Makefile.in (IO_OBJECTS): Added iopopen.o.
1954 * config.shared (DISTCLEAN): Also remove Make.pack.
1955 * config.shared (CXXINCLUDES): Add $(NOSTDINC).
1956
1957 * config.shared (INSTALL): Fix so it ues the correct install.sh
1958 whether $srcdir is absolute or relative.
1959
1960 * floatconv.c (DBL_MAX_10_EXP): Fix default value.
1961
1962 Wed Nov 3 10:20:49 1993 Per Bothner (bothner@kalessin.cygnus.com)
1963
1964 * gen-params: Make more robust to allow random junk (NeXT
1965 has spaces) before typedefs.
1966
1967 * fileops.c (_IO_file_overflow): Reduce code duplication.
1968 * Makefile.in (IO_OBJECTS): Remove ioputs.o.
1969
1970 * iovfscanf.c, libio.h: Extra parameter to _IO_vfscanf,
1971 for optionally setting an error indication..
1972 * iofscanf.c, ioscanf.c, iofscanf.c, iovsscanf.c: Fix calls to
1973 _IO_vfscanf to pass an extra NULL.
1974 * sbscan.cc (streambuf::vscan): If passed an extra stream,
1975 set its error state (using new _IO_vfscanf parameter.
1976
1977 * filedoalloc.c, fileops.c, genops.c, iogetline.c, ioignore.c,
1978 libio.h, libioP.h, streambuf.cc streambuf.h, strfile.h, strops.c,
1979 strstream.cc: Replace macros (_base, _ebuf, _eback, _gptr, _egptr,
1980 _pbase, _pptr, _epptr) by field names (_IO_buf_base, _IO_buf_end,
1981 _IO_read_base, _IO_read_pre, IO_read_end, _IO_write_base,
1982 _IO_write_ptr, _IO_write_end).
1983 * libio.h: Remove the old macros (which fixes a conflict.
1984
1985 Mon Nov 1 15:22:12 1993 Per Bothner (bothner@kalessin.cygnus.com)
1986
1987 * iostream.cc: Use _IO_sputn instead of sputn. _IO_sputn does
1988 not require a vtable pointer, and is also slightly faster.
1989
1990 * builtinbuf.{h,cc} (builtinbuf::setbuf): Fix return and
1991 parameter types.
1992
1993 Mon Oct 25 12:56:33 1993 Per Bothner (bothner@kalessin.cygnus.com)
1994
1995 Kludge to make sure _IO_FILE buffers get flushed before exit.
1996 * dbz/dbzmain.c, dbz/fake.c, dbz/byteflip.c:
1997 Invoke DBZ_FINISH macro (if defined) before (normal) exits.
1998 * dbz/Makefile.in (CFLAGS): Define DBZ_FINISH to call _IO_flush_all.
1999
2000 Sat Oct 23 22:10:53 1993 Per Bothner (bothner@kalessin.cygnus.com)
2001
2002 * Makefile.in (VERSION): Set to 0.60 for libg++ release.
2003 * fileops.c (_IO_file_attach): Set _offset to _IO_pos_BAD.
2004 * iostream.cc (ostream::flush): Fix thinkp.
2005 * editbuf.cc, isgetsb.cc, isscan.cc, osform.cc, parsestream.cc,
2006 pfstream.cc, sbform.cc, sbscan.cc, stdstreams.cc, stream.cc:
2007 Replace #include "ioprivate.h" by #include "libioP.h" (and
2008 sometimes stdarg.h, stdlib.h and/or string.h).
2009 * ioprivate.h: Removed.
2010
2011
2012 Thu Oct 21 19:24:02 1993 Per Bothner (bothner@kalessin.cygnus.com)
2013
2014 * PlotFile.h, SFile.h, editbuf.cc, editbuf.h, filebuf.cc,
2015 fstream.cc, fstream.h, indstream.cc, indstream.h, iomanip.cc,
2016 iomanip.h, ioprivate.h, iostream.cc, iostream.h, isgetline.cc,
2017 isgetsb.cc, parsestream.cc, parsestream.h, pfstream.cc,
2018 pfstream.h, procbuf.cc, procbuf.h, stdiostream.cc, stdiostream.h,
2019 stdstreams.cc, streambuf.cc, streambuf.h, strstream.cc,
2020 strstream.h: Remove old (duplicate) copyright notices.
2021
2022 * iostream.cc: Fix calls to sync() to be safe in the presence
2023 of vtable-less streambufs.
2024
2025 Wed Oct 20 15:22:04 1993 Per Bothner (bothner@kalessin.cygnus.com)
2026
2027 * streambuf.h (streambuf::underflow, streambuf::overflow):
2028 Don't make virtual functions pure.
2029 * streambuf.cc (streambuf::underflow, streambuf::overflow):
2030 Default definitions (return EOF).
2031 * fstream.h: Add new (int fd, char* buf, int len) constructors.
2032 These are deprecated, but added for AT&T compatibility.
2033 * fstream.cc fstreambase::fstreambase(int fd, char *p, int l): New.
2034
2035 Thu Oct 14 14:57:01 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2036
2037 * configure.in: use 'mv -f' instead of 'mv'
2038
2039 Tue Oct 12 05:01:44 1993 Mike Stump (mrs@cygnus.com)
2040
2041 * floatconv.c: Fix typo, change __STDC to __STDC__.
2042
2043 Mon Oct 11 17:03:12 1993 Per Bothner (bothner@kalessin.cygnus.com)
2044
2045 * cleanup.c: It should be #if _G_HAVE_ATEXIT, not #ifdef.
2046
2047 * floatconv.c, iostrerror.c, iovfprintf.c, iovfscanf.c, libioP.h:
2048 Bunch of fixes to allow use of non-ANSI (K&R) C compilers.
2049
2050 * Makefile.in (iostream.list): Use CC=$(CXX) to force use of gcc.
2051 * README: New file.
2052
2053 Fri Oct 8 16:19:58 1993 Per Bothner (bothner@kalessin.cygnus.com)
2054
2055 * Makefile.in: Move ioungetc.o from STDIO_WRAP_OBJECTS to
2056 IO_OBJECTS (since it is needed for iovfscanf.c).
2057 * iostrerror.c: Add declaration of strerror.
2058
2059 Thu Oct 7 12:02:28 1993 Per Bothner (bothner@kalessin.cygnus.com)
2060
2061 * cleanup.c: New file, to cause flushing at exit.
2062 * filedoalloc.c: Cause flushing on exit.
2063 * Makefile.in (OSPRIM_OBJECTS): Add cleanup.o.
2064 * gen-params: Check for atexit.
2065
2066 Tue Oct 5 19:11:14 1993 Mike Stump (mrs@cygnus.com)
2067
2068 * ioperror.c (_IO_strerror): Add missing ()s in _PARAMS usage.
2069
2070 Tue Oct 5 10:33:37 1993 Per Bothner (bothner@kalessin.cygnus.com)
2071
2072 * iofprintf.c, iofscanf.c, ioprintf.c, ioscanf.c, iosprintf.c,
2073 iosscanf.c: Remove bogus semi-colon after va_dcl.
2074 * ioperror.c: Fix typos in declaration.
2075
2076 Mon Oct 4 17:12:22 1993 Per Bothner (bothner@kalessin.cygnus.com)
2077
2078 * configure.in (CLEAN): Define (as _G_config.h *.a).
2079
2080 * fileops.c (_IO_file_read): Don't assume EINTR is defined.
2081 * iosetbuf.c: Replace by generalized ...
2082 * iosetbuffer.c: ... variant, derived from BSD.
2083 * Makefile.in (STDIO_WRAP_OBJECTS): Change correspondingly.
2084 * iosetvbuf.c (iosetvbuf): Minor ANSI tweak.
2085 * iostdio.h (setbuf, setlinebuf): New #defines.
2086 * iolibio.h (_IO_setbuf, _IO_setlinebuf): (Re-)define as macros.
2087 * Makefile.in (LIBIO_OBJECTS): New macro.
2088
2089 Tue Sep 28 14:15:52 1993 Per Bothner (bothner@kalessin.cygnus.com)
2090
2091 * libioP.h (_IO_proc_open, _IO_proc_close): Add missing return types.
2092 * procbuf.cc: Belated fixes.
2093
2094 Mon Sep 27 14:04:47 1993 Per Bothner (bothner@kalessin.cygnus.com)
2095
2096 * Makefile.in: List new files. Add STDIO_WRAP_OBJECTS macro.
2097 * floatconv.c (d2b): Use Exp_msk11 instead of Exp_msk1.
2098 * iofgetpos.c (_IO_fgetpos), iofsetpos.c (_IO_fsetpos): Clean up.
2099 * iolibio.h: New file. Declarations of _IO_foo, for most foo
2100 where foo is a stdio function. (Remove these from libio.h.)
2101 * iostream.h (istream::istreambuf, ostream::ostreambuf): Move
2102 obsolete functions inside #ifdef _STREAM_COMPAT.
2103 * libio.h, libioP.h, streambuf.h, parsestream.h, stdiostream.h:
2104 Use _IO_fpos_t rather than _IO_pos_t.
2105 * iopopen.c: New file type, for pipe (popen-like) streams.
2106 * procbuf.cc: Now just a C++ wrapper for the files in iopopen.c.
2107 * streambuf.h (ios::unsetf): Return complete old value of flags.
2108 * iogets.c (_IO_gets(), ioungetc.c (_IO_ungetc), ioperror.c
2109 (_IO_perror), iostrerror.c (_IO_strerror): New files and
2110 functions, for stdio implementation.
2111 * iostdio.h: Add declarations for various recently-added functions.
2112
2113 Sun Sep 12 14:24:55 1993 Per Bothner (bothner@kalessin.cygnus.com)
2114
2115 * streambuf.h (ios::showpos):: Fix typo.
2116
2117 Fri Aug 27 12:05:47 1993 Per Bothner (bothner@kalessin.cygnus.com)
2118
2119 * iopadn.c (_IO_padn): Change to return count of chars written.
2120 * outfloat.c, iovfprintf.c: Change for new _IO_padn interface.
2121 * iostream.cc (ostream::operator<<): Make sure to set badbit
2122 on a failure (many places). Use _IO_padn more.
2123 * iostream.cc (ostream& ostream::operator<<(const void *p): Move to
2124 * osform.cc: ... here, to reduce linking-in-the-world syndrome.
2125 * osform.cc: Use rdbuf(), instead of _strbuf directly.
2126
2127 * genops.c (_IO_sgetn), libio.h: New function.
2128 * streambuf.h (streambuf.h::sgetn): Use _IO_sgetn.
2129 * SFile.cc (SFile::operator[]): Use sseekoff, not seekoff.
2130
2131 Thu Aug 26 10:16:31 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2132
2133 * config.shared (SUBDIRS): only recurse if the directory is configured
2134
2135 Wed Aug 25 12:56:12 1993 Per Bothner (bothner@kalessin.cygnus.com)
2136
2137 * config/{hpux.mt, isc.mt, sco4.mt}:
2138 Moved from ../libg++/config (since they affect _G_config.h).
2139 * configure.in: Set target_make_frag to one of the above files.
2140
2141 Fri Aug 20 00:53:14 1993 Per Bothner (bothner@kalessin.cygnus.com)
2142
2143 * iofopen.c (iofopen): Fix type passed to _IO_un_link().
2144 * Makefile.in (_G_config.h): Pass $CC (not $CXX) as CC.
2145
2146 * configure.in (configdirs): Add dbz and stdio.
2147 * fileops.c (_IO_file_seekoff): Convert more old functionality.
2148 * iofdopen.c: Use mode parameter to set _flags.
2149 * iofscanf.c, ioputs.c, ioscanf.c, iosprintf.c: New files.
2150 * Makefile.in (IO_OBJECTS): Added new objects.
2151 * iostdio.h: Add feof. fscanf, puts, sprintf, vsprintf.
2152 * libio.h: Add _IO_vprintf macro.
2153 * iofopen.c: Invoke _IO_un_link if failure.
2154 * iovsprintf.c: Write terminating NUL.
2155
2156 * libioP.h: Add COERCE_FILE macro (by default does nothing).
2157 * iofclose.c, iofflush.c, iofgets.c, iofprintf.c, iofputs.c,
2158 iofread.c, ioftell.c, iofwrite.c, iosetbuf.c, iosetvbuf.c:
2159 Invoke COERCE_FILE macro.
2160 * ioftell.c: Use _IO_seekoff.
2161
2162 Wed Aug 18 22:49:56 1993 Per Bothner (bothner@kalessin.cygnus.com)
2163
2164 * sbform.cc (streambuf::form), sbscan.cc (streambuf::scan):
2165 Remove cast to _IO_va_list. (Loses if array type.)
2166
2167 * libio.h: Handle _IO_va_list for systems that need <stdarg.h>.
2168 * floatconv.h: Fix typo (reported by H.J.Lu).
2169
2170 Wed Aug 18 19:34:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2171
2172 * configure.in (INSTALLDIR): handle native vs. cross case
2173
2174 * Makefile.in (install): don't use $TARGETLIB, set INSTALLDIR to
2175 $(libdir)
2176
2177 Wed Aug 18 12:10:03 1993 Per Bothner (bothner@kalessin.cygnus.com)
2178
2179 * Makefile.in: Rename iostream-files to iostream.list.
2180 * configure.in: Add iostream.list to MOSTLYCLEAN.
2181
2182 Tue Aug 17 18:56:59 1993 Per Bothner (bothner@kalessin.cygnus.com)
2183
2184 * Makefile.in: Depend on _G_config.h where appropriate.
2185 * config.shared (CXXINCLUDES): If doing libg++, search ../libio.
2186
2187 Tue Aug 17 17:34:24 1993 Per Bothner (bothner@kalessin.cygnus.com)
2188
2189 New directory. Based on old libg++/iostream code,
2190 but extensively re-written.
2191
2192
This page took 0.122051 seconds and 6 git commands to generate.