]> git.ipfire.org Git - thirdparty/gcc.git/blob - libgfortran/io/unit.c
Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[thirdparty/gcc.git] / libgfortran / io / unit.c
1 /* Copyright (C) 2002, 2003, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
3 F2003 I/O support contributed by Jerry DeLisle
4
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
7 Libgfortran is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
20
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
25
26 #include "io.h"
27 #include <stdlib.h>
28 #include <string.h>
29
30
31 /* IO locking rules:
32 UNIT_LOCK is a master lock, protecting UNIT_ROOT tree and UNIT_CACHE.
33 Concurrent use of different units should be supported, so
34 each unit has its own lock, LOCK.
35 Open should be atomic with its reopening of units and list_read.c
36 in several places needs find_unit another unit while holding stdin
37 unit's lock, so it must be possible to acquire UNIT_LOCK while holding
38 some unit's lock. Therefore to avoid deadlocks, it is forbidden
39 to acquire unit's private locks while holding UNIT_LOCK, except
40 for freshly created units (where no other thread can get at their
41 address yet) or when using just trylock rather than lock operation.
42 In addition to unit's private lock each unit has a WAITERS counter
43 and CLOSED flag. WAITERS counter must be either only
44 atomically incremented/decremented in all places (if atomic builtins
45 are supported), or protected by UNIT_LOCK in all places (otherwise).
46 CLOSED flag must be always protected by unit's LOCK.
47 After finding a unit in UNIT_CACHE or UNIT_ROOT with UNIT_LOCK held,
48 WAITERS must be incremented to avoid concurrent close from freeing
49 the unit between unlocking UNIT_LOCK and acquiring unit's LOCK.
50 Unit freeing is always done under UNIT_LOCK. If close_unit sees any
51 WAITERS, it doesn't free the unit but instead sets the CLOSED flag
52 and the thread that decrements WAITERS to zero while CLOSED flag is
53 set is responsible for freeing it (while holding UNIT_LOCK).
54 flush_all_units operation is iterating over the unit tree with
55 increasing UNIT_NUMBER while holding UNIT_LOCK and attempting to
56 flush each unit (and therefore needs the unit's LOCK held as well).
57 To avoid deadlocks, it just trylocks the LOCK and if unsuccessful,
58 remembers the current unit's UNIT_NUMBER, unlocks UNIT_LOCK, acquires
59 unit's LOCK and after flushing reacquires UNIT_LOCK and restarts with
60 the smallest UNIT_NUMBER above the last one flushed.
61
62 If find_unit/find_or_create_unit/find_file/get_unit routines return
63 non-NULL, the returned unit has its private lock locked and when the
64 caller is done with it, it must call either unlock_unit or close_unit
65 on it. unlock_unit or close_unit must be always called only with the
66 private lock held. */
67
68 /* Subroutines related to units */
69
70
71 #define CACHE_SIZE 3
72 static gfc_unit *unit_cache[CACHE_SIZE];
73 gfc_offset max_offset;
74 gfc_unit *unit_root;
75 #ifdef __GTHREAD_MUTEX_INIT
76 __gthread_mutex_t unit_lock = __GTHREAD_MUTEX_INIT;
77 #else
78 __gthread_mutex_t unit_lock;
79 #endif
80
81 /* We use these filenames for error reporting. */
82
83 static char stdin_name[] = "stdin";
84 static char stdout_name[] = "stdout";
85 static char stderr_name[] = "stderr";
86
87 /* This implementation is based on Stefan Nilsson's article in the
88 * July 1997 Doctor Dobb's Journal, "Treaps in Java". */
89
90 /* pseudo_random()-- Simple linear congruential pseudorandom number
91 * generator. The period of this generator is 44071, which is plenty
92 * for our purposes. */
93
94 static int
95 pseudo_random (void)
96 {
97 static int x0 = 5341;
98
99 x0 = (22611 * x0 + 10) % 44071;
100 return x0;
101 }
102
103
104 /* rotate_left()-- Rotate the treap left */
105
106 static gfc_unit *
107 rotate_left (gfc_unit * t)
108 {
109 gfc_unit *temp;
110
111 temp = t->right;
112 t->right = t->right->left;
113 temp->left = t;
114
115 return temp;
116 }
117
118
119 /* rotate_right()-- Rotate the treap right */
120
121 static gfc_unit *
122 rotate_right (gfc_unit * t)
123 {
124 gfc_unit *temp;
125
126 temp = t->left;
127 t->left = t->left->right;
128 temp->right = t;
129
130 return temp;
131 }
132
133
134
135 static int
136 compare (int a, int b)
137 {
138 if (a < b)
139 return -1;
140 if (a > b)
141 return 1;
142
143 return 0;
144 }
145
146
147 /* insert()-- Recursive insertion function. Returns the updated treap. */
148
149 static gfc_unit *
150 insert (gfc_unit *new, gfc_unit *t)
151 {
152 int c;
153
154 if (t == NULL)
155 return new;
156
157 c = compare (new->unit_number, t->unit_number);
158
159 if (c < 0)
160 {
161 t->left = insert (new, t->left);
162 if (t->priority < t->left->priority)
163 t = rotate_right (t);
164 }
165
166 if (c > 0)
167 {
168 t->right = insert (new, t->right);
169 if (t->priority < t->right->priority)
170 t = rotate_left (t);
171 }
172
173 if (c == 0)
174 internal_error (NULL, "insert(): Duplicate key found!");
175
176 return t;
177 }
178
179
180 /* insert_unit()-- Create a new node, insert it into the treap. */
181
182 static gfc_unit *
183 insert_unit (int n)
184 {
185 gfc_unit *u = get_mem (sizeof (gfc_unit));
186 memset (u, '\0', sizeof (gfc_unit));
187 u->unit_number = n;
188 #ifdef __GTHREAD_MUTEX_INIT
189 {
190 __gthread_mutex_t tmp = __GTHREAD_MUTEX_INIT;
191 u->lock = tmp;
192 }
193 #else
194 __GTHREAD_MUTEX_INIT_FUNCTION (&u->lock);
195 #endif
196 __gthread_mutex_lock (&u->lock);
197 u->priority = pseudo_random ();
198 unit_root = insert (u, unit_root);
199 return u;
200 }
201
202
203 /* destroy_unit_mutex()-- Destroy the mutex and free memory of unit. */
204
205 static void
206 destroy_unit_mutex (gfc_unit * u)
207 {
208 __gthread_mutex_destroy (&u->lock);
209 free_mem (u);
210 }
211
212
213 static gfc_unit *
214 delete_root (gfc_unit * t)
215 {
216 gfc_unit *temp;
217
218 if (t->left == NULL)
219 return t->right;
220 if (t->right == NULL)
221 return t->left;
222
223 if (t->left->priority > t->right->priority)
224 {
225 temp = rotate_right (t);
226 temp->right = delete_root (t);
227 }
228 else
229 {
230 temp = rotate_left (t);
231 temp->left = delete_root (t);
232 }
233
234 return temp;
235 }
236
237
238 /* delete_treap()-- Delete an element from a tree. The 'old' value
239 * does not necessarily have to point to the element to be deleted, it
240 * must just point to a treap structure with the key to be deleted.
241 * Returns the new root node of the tree. */
242
243 static gfc_unit *
244 delete_treap (gfc_unit * old, gfc_unit * t)
245 {
246 int c;
247
248 if (t == NULL)
249 return NULL;
250
251 c = compare (old->unit_number, t->unit_number);
252
253 if (c < 0)
254 t->left = delete_treap (old, t->left);
255 if (c > 0)
256 t->right = delete_treap (old, t->right);
257 if (c == 0)
258 t = delete_root (t);
259
260 return t;
261 }
262
263
264 /* delete_unit()-- Delete a unit from a tree */
265
266 static void
267 delete_unit (gfc_unit * old)
268 {
269 unit_root = delete_treap (old, unit_root);
270 }
271
272
273 /* get_external_unit()-- Given an integer, return a pointer to the unit
274 * structure. Returns NULL if the unit does not exist,
275 * otherwise returns a locked unit. */
276
277 static gfc_unit *
278 get_external_unit (int n, int do_create)
279 {
280 gfc_unit *p;
281 int c, created = 0;
282
283 __gthread_mutex_lock (&unit_lock);
284 retry:
285 for (c = 0; c < CACHE_SIZE; c++)
286 if (unit_cache[c] != NULL && unit_cache[c]->unit_number == n)
287 {
288 p = unit_cache[c];
289 goto found;
290 }
291
292 p = unit_root;
293 while (p != NULL)
294 {
295 c = compare (n, p->unit_number);
296 if (c < 0)
297 p = p->left;
298 if (c > 0)
299 p = p->right;
300 if (c == 0)
301 break;
302 }
303
304 if (p == NULL && do_create)
305 {
306 p = insert_unit (n);
307 created = 1;
308 }
309
310 if (p != NULL)
311 {
312 for (c = 0; c < CACHE_SIZE - 1; c++)
313 unit_cache[c] = unit_cache[c + 1];
314
315 unit_cache[CACHE_SIZE - 1] = p;
316 }
317
318 if (created)
319 {
320 /* Newly created units have their lock held already
321 from insert_unit. Just unlock UNIT_LOCK and return. */
322 __gthread_mutex_unlock (&unit_lock);
323 return p;
324 }
325
326 found:
327 if (p != NULL)
328 {
329 /* Fast path. */
330 if (! __gthread_mutex_trylock (&p->lock))
331 {
332 /* assert (p->closed == 0); */
333 __gthread_mutex_unlock (&unit_lock);
334 return p;
335 }
336
337 inc_waiting_locked (p);
338 }
339
340 __gthread_mutex_unlock (&unit_lock);
341
342 if (p != NULL)
343 {
344 __gthread_mutex_lock (&p->lock);
345 if (p->closed)
346 {
347 __gthread_mutex_lock (&unit_lock);
348 __gthread_mutex_unlock (&p->lock);
349 if (predec_waiting_locked (p) == 0)
350 destroy_unit_mutex (p);
351 goto retry;
352 }
353
354 dec_waiting_unlocked (p);
355 }
356 return p;
357 }
358
359
360 gfc_unit *
361 find_unit (int n)
362 {
363 return get_external_unit (n, 0);
364 }
365
366
367 gfc_unit *
368 find_or_create_unit (int n)
369 {
370 return get_external_unit (n, 1);
371 }
372
373
374 gfc_unit *
375 get_internal_unit (st_parameter_dt *dtp)
376 {
377 gfc_unit * iunit;
378 gfc_offset start_record = 0;
379
380 /* Allocate memory for a unit structure. */
381
382 iunit = get_mem (sizeof (gfc_unit));
383 if (iunit == NULL)
384 {
385 generate_error (&dtp->common, LIBERROR_INTERNAL_UNIT, NULL);
386 return NULL;
387 }
388
389 memset (iunit, '\0', sizeof (gfc_unit));
390 #ifdef __GTHREAD_MUTEX_INIT
391 {
392 __gthread_mutex_t tmp = __GTHREAD_MUTEX_INIT;
393 iunit->lock = tmp;
394 }
395 #else
396 __GTHREAD_MUTEX_INIT_FUNCTION (&iunit->lock);
397 #endif
398 __gthread_mutex_lock (&iunit->lock);
399
400 iunit->recl = dtp->internal_unit_len;
401
402 /* For internal units we set the unit number to -1.
403 Otherwise internal units can be mistaken for a pre-connected unit or
404 some other file I/O unit. */
405 iunit->unit_number = -1;
406
407 /* Set up the looping specification from the array descriptor, if any. */
408
409 if (is_array_io (dtp))
410 {
411 iunit->rank = GFC_DESCRIPTOR_RANK (dtp->internal_unit_desc);
412 iunit->ls = (array_loop_spec *)
413 get_mem (iunit->rank * sizeof (array_loop_spec));
414 dtp->internal_unit_len *=
415 init_loop_spec (dtp->internal_unit_desc, iunit->ls, &start_record);
416
417 start_record *= iunit->recl;
418 }
419
420 /* Set initial values for unit parameters. */
421
422 iunit->s = open_internal (dtp->internal_unit - start_record,
423 dtp->internal_unit_len, -start_record);
424 iunit->bytes_left = iunit->recl;
425 iunit->last_record=0;
426 iunit->maxrec=0;
427 iunit->current_record=0;
428 iunit->read_bad = 0;
429 iunit->endfile = NO_ENDFILE;
430
431 /* Set flags for the internal unit. */
432
433 iunit->flags.access = ACCESS_SEQUENTIAL;
434 iunit->flags.action = ACTION_READWRITE;
435 iunit->flags.blank = BLANK_NULL;
436 iunit->flags.form = FORM_FORMATTED;
437 iunit->flags.pad = PAD_YES;
438 iunit->flags.status = STATUS_UNSPECIFIED;
439 iunit->flags.sign = SIGN_SUPPRESS;
440 iunit->flags.decimal = DECIMAL_POINT;
441 iunit->flags.encoding = ENCODING_DEFAULT;
442 iunit->flags.async = ASYNC_NO;
443
444 /* Initialize the data transfer parameters. */
445
446 dtp->u.p.advance_status = ADVANCE_YES;
447 dtp->u.p.seen_dollar = 0;
448 dtp->u.p.skips = 0;
449 dtp->u.p.pending_spaces = 0;
450 dtp->u.p.max_pos = 0;
451 dtp->u.p.at_eof = 0;
452
453 /* This flag tells us the unit is assigned to internal I/O. */
454
455 dtp->u.p.unit_is_internal = 1;
456
457 return iunit;
458 }
459
460
461 /* free_internal_unit()-- Free memory allocated for internal units if any. */
462 void
463 free_internal_unit (st_parameter_dt *dtp)
464 {
465 if (!is_internal_unit (dtp))
466 return;
467
468 if (dtp->u.p.current_unit != NULL)
469 {
470 if (dtp->u.p.current_unit->ls != NULL)
471 free_mem (dtp->u.p.current_unit->ls);
472
473 if (dtp->u.p.current_unit->s)
474 free_mem (dtp->u.p.current_unit->s);
475
476 destroy_unit_mutex (dtp->u.p.current_unit);
477 }
478 }
479
480
481
482 /* get_unit()-- Returns the unit structure associated with the integer
483 * unit or the internal file. */
484
485 gfc_unit *
486 get_unit (st_parameter_dt *dtp, int do_create)
487 {
488
489 if ((dtp->common.flags & IOPARM_DT_HAS_INTERNAL_UNIT) != 0)
490 return get_internal_unit(dtp);
491
492 /* Has to be an external unit */
493
494 dtp->u.p.unit_is_internal = 0;
495 dtp->internal_unit_desc = NULL;
496
497 return get_external_unit (dtp->common.unit, do_create);
498 }
499
500
501 /*************************/
502 /* Initialize everything */
503
504 void
505 init_units (void)
506 {
507 gfc_unit *u;
508 unsigned int i;
509
510 #ifndef __GTHREAD_MUTEX_INIT
511 __GTHREAD_MUTEX_INIT_FUNCTION (&unit_lock);
512 #endif
513
514 if (options.stdin_unit >= 0)
515 { /* STDIN */
516 u = insert_unit (options.stdin_unit);
517 u->s = input_stream ();
518
519 u->flags.action = ACTION_READ;
520
521 u->flags.access = ACCESS_SEQUENTIAL;
522 u->flags.form = FORM_FORMATTED;
523 u->flags.status = STATUS_OLD;
524 u->flags.blank = BLANK_NULL;
525 u->flags.pad = PAD_YES;
526 u->flags.position = POSITION_ASIS;
527 u->flags.sign = SIGN_SUPPRESS;
528 u->flags.decimal = DECIMAL_POINT;
529 u->flags.encoding = ENCODING_DEFAULT;
530 u->flags.async = ASYNC_NO;
531
532 u->recl = options.default_recl;
533 u->endfile = NO_ENDFILE;
534
535 u->file_len = strlen (stdin_name);
536 u->file = get_mem (u->file_len);
537 memmove (u->file, stdin_name, u->file_len);
538
539 fbuf_init (u, 0);
540
541 __gthread_mutex_unlock (&u->lock);
542 }
543
544 if (options.stdout_unit >= 0)
545 { /* STDOUT */
546 u = insert_unit (options.stdout_unit);
547 u->s = output_stream ();
548
549 u->flags.action = ACTION_WRITE;
550
551 u->flags.access = ACCESS_SEQUENTIAL;
552 u->flags.form = FORM_FORMATTED;
553 u->flags.status = STATUS_OLD;
554 u->flags.blank = BLANK_NULL;
555 u->flags.position = POSITION_ASIS;
556 u->flags.sign = SIGN_SUPPRESS;
557 u->flags.decimal = DECIMAL_POINT;
558 u->flags.encoding = ENCODING_DEFAULT;
559 u->flags.async = ASYNC_NO;
560
561 u->recl = options.default_recl;
562 u->endfile = AT_ENDFILE;
563
564 u->file_len = strlen (stdout_name);
565 u->file = get_mem (u->file_len);
566 memmove (u->file, stdout_name, u->file_len);
567
568 fbuf_init (u, 0);
569
570 __gthread_mutex_unlock (&u->lock);
571 }
572
573 if (options.stderr_unit >= 0)
574 { /* STDERR */
575 u = insert_unit (options.stderr_unit);
576 u->s = error_stream ();
577
578 u->flags.action = ACTION_WRITE;
579
580 u->flags.access = ACCESS_SEQUENTIAL;
581 u->flags.form = FORM_FORMATTED;
582 u->flags.status = STATUS_OLD;
583 u->flags.blank = BLANK_NULL;
584 u->flags.position = POSITION_ASIS;
585 u->flags.sign = SIGN_SUPPRESS;
586 u->flags.decimal = DECIMAL_POINT;
587 u->flags.encoding = ENCODING_DEFAULT;
588 u->flags.async = ASYNC_NO;
589
590 u->recl = options.default_recl;
591 u->endfile = AT_ENDFILE;
592
593 u->file_len = strlen (stderr_name);
594 u->file = get_mem (u->file_len);
595 memmove (u->file, stderr_name, u->file_len);
596
597 fbuf_init (u, 256); /* 256 bytes should be enough, probably not doing
598 any kind of exotic formatting to stderr. */
599
600 __gthread_mutex_unlock (&u->lock);
601 }
602
603 /* Calculate the maximum file offset in a portable manner.
604 * max will be the largest signed number for the type gfc_offset.
605 *
606 * set a 1 in the LSB and keep a running sum, stopping at MSB-1 bit. */
607
608 max_offset = 0;
609 for (i = 0; i < sizeof (max_offset) * 8 - 1; i++)
610 max_offset = max_offset + ((gfc_offset) 1 << i);
611 }
612
613
614 static int
615 close_unit_1 (gfc_unit *u, int locked)
616 {
617 int i, rc;
618
619 /* If there are previously written bytes from a write with ADVANCE="no"
620 Reposition the buffer before closing. */
621 if (u->previous_nonadvancing_write)
622 finish_last_advance_record (u);
623
624 rc = (u->s == NULL) ? 0 : sclose (u->s) == -1;
625
626 u->closed = 1;
627 if (!locked)
628 __gthread_mutex_lock (&unit_lock);
629
630 for (i = 0; i < CACHE_SIZE; i++)
631 if (unit_cache[i] == u)
632 unit_cache[i] = NULL;
633
634 delete_unit (u);
635
636 if (u->file)
637 free_mem (u->file);
638 u->file = NULL;
639 u->file_len = 0;
640
641 free_format_hash_table (u);
642 fbuf_destroy (u);
643
644 if (!locked)
645 __gthread_mutex_unlock (&u->lock);
646
647 /* If there are any threads waiting in find_unit for this unit,
648 avoid freeing the memory, the last such thread will free it
649 instead. */
650 if (u->waiting == 0)
651 destroy_unit_mutex (u);
652
653 if (!locked)
654 __gthread_mutex_unlock (&unit_lock);
655
656 return rc;
657 }
658
659 void
660 unlock_unit (gfc_unit *u)
661 {
662 __gthread_mutex_unlock (&u->lock);
663 }
664
665 /* close_unit()-- Close a unit. The stream is closed, and any memory
666 * associated with the stream is freed. Returns nonzero on I/O error.
667 * Should be called with the u->lock locked. */
668
669 int
670 close_unit (gfc_unit *u)
671 {
672 return close_unit_1 (u, 0);
673 }
674
675
676 /* close_units()-- Delete units on completion. We just keep deleting
677 * the root of the treap until there is nothing left.
678 * Not sure what to do with locking here. Some other thread might be
679 * holding some unit's lock and perhaps hold it indefinitely
680 * (e.g. waiting for input from some pipe) and close_units shouldn't
681 * delay the program too much. */
682
683 void
684 close_units (void)
685 {
686 __gthread_mutex_lock (&unit_lock);
687 while (unit_root != NULL)
688 close_unit_1 (unit_root, 1);
689 __gthread_mutex_unlock (&unit_lock);
690 }
691
692
693 /* update_position()-- Update the flags position for later use by inquire. */
694
695 void
696 update_position (gfc_unit *u)
697 {
698 if (stell (u->s) == 0)
699 u->flags.position = POSITION_REWIND;
700 else if (file_length (u->s) == stell (u->s))
701 u->flags.position = POSITION_APPEND;
702 else
703 u->flags.position = POSITION_ASIS;
704 }
705
706
707 /* High level interface to truncate a file safely, i.e. flush format
708 buffers, check that it's a regular file, and generate error if that
709 occurs. Just like POSIX ftruncate, returns 0 on success, -1 on
710 failure. */
711
712 int
713 unit_truncate (gfc_unit * u, gfc_offset pos, st_parameter_common * common)
714 {
715 int ret;
716
717 /* Make sure format buffer is flushed. */
718 if (u->flags.form == FORM_FORMATTED)
719 {
720 if (u->mode == READING)
721 pos += fbuf_reset (u);
722 else
723 fbuf_flush (u, u->mode);
724 }
725
726 /* Don't try to truncate a special file, just pretend that it
727 succeeds. */
728 if (is_special (u->s) || !is_seekable (u->s))
729 {
730 sflush (u->s);
731 return 0;
732 }
733
734 /* struncate() should flush the stream buffer if necessary, so don't
735 bother calling sflush() here. */
736 ret = struncate (u->s, pos);
737
738 if (ret != 0)
739 {
740 generate_error (common, LIBERROR_OS, NULL);
741 u->endfile = NO_ENDFILE;
742 u->flags.position = POSITION_ASIS;
743 }
744 else
745 {
746 u->endfile = AT_ENDFILE;
747 u->flags.position = POSITION_APPEND;
748 }
749
750 return ret;
751 }
752
753
754 /* filename_from_unit()-- If the unit_number exists, return a pointer to the
755 name of the associated file, otherwise return the empty string. The caller
756 must free memory allocated for the filename string. */
757
758 char *
759 filename_from_unit (int n)
760 {
761 char *filename;
762 gfc_unit *u;
763 int c;
764
765 /* Find the unit. */
766 u = unit_root;
767 while (u != NULL)
768 {
769 c = compare (n, u->unit_number);
770 if (c < 0)
771 u = u->left;
772 if (c > 0)
773 u = u->right;
774 if (c == 0)
775 break;
776 }
777
778 /* Get the filename. */
779 if (u != NULL)
780 {
781 filename = (char *) get_mem (u->file_len + 1);
782 unpack_filename (filename, u->file, u->file_len);
783 return filename;
784 }
785 else
786 return (char *) NULL;
787 }
788
789 void
790 finish_last_advance_record (gfc_unit *u)
791 {
792
793 if (u->saved_pos > 0)
794 fbuf_seek (u, u->saved_pos, SEEK_CUR);
795
796 if (!(u->unit_number == options.stdout_unit
797 || u->unit_number == options.stderr_unit))
798 {
799 #ifdef HAVE_CRLF
800 const int len = 2;
801 #else
802 const int len = 1;
803 #endif
804 char *p = fbuf_alloc (u, len);
805 if (!p)
806 os_error ("Completing record after ADVANCE_NO failed");
807 #ifdef HAVE_CRLF
808 *(p++) = '\r';
809 #endif
810 *p = '\n';
811 }
812
813 fbuf_flush (u, u->mode);
814 }
815