1 /* Copyright (C) 1993, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>.
19 As a special exception, if you link the code in this file with
20 files compiled with a GNU compiler to produce an executable,
21 that does not cause the resulting executable to be covered by
22 the GNU Lesser General Public License. This exception does not
23 however invalidate any other reasons why the executable file
24 might be covered by the GNU Lesser General Public License.
25 This exception applies to code released by its copyright holders
26 in files containing the exception. */
30 #define _IOFBF 0 /* Fully buffered. */
31 #define _IOLBF 1 /* Line buffered. */
32 #define _IONBF 2 /* No buffering. */
35 _IO_setvbuf (fp
, buf
, mode
, size
)
43 _IO_acquire_lock (fp
);
47 fp
->_IO_file_flags
&= ~(_IO_LINE_BUF
|_IO_UNBUFFERED
);
50 if (fp
->_IO_buf_base
== NULL
)
52 /* There is no flag to distinguish between "fully buffered
53 mode has been explicitly set" as opposed to "line
54 buffering has not been explicitly set". In both
55 cases, _IO_LINE_BUF is off. If this is a tty, and
56 _IO_filedoalloc later gets called, it cannot know if
57 it should set the _IO_LINE_BUF flag (because that is
58 the default), or not (because we have explicitly asked
59 for fully buffered mode). So we make sure a buffer
60 gets allocated now, and explicitly turn off line
63 A possibly cleaner alternative would be to add an
64 extra flag, but then flags are a finite resource. */
65 if (_IO_DOALLOCATE (fp
) < 0)
70 fp
->_IO_file_flags
&= ~_IO_LINE_BUF
;
77 fp
->_IO_file_flags
&= ~_IO_UNBUFFERED
;
78 fp
->_IO_file_flags
|= _IO_LINE_BUF
;
86 fp
->_IO_file_flags
&= ~_IO_LINE_BUF
;
87 fp
->_IO_file_flags
|= _IO_UNBUFFERED
;
95 result
= _IO_SETBUF (fp
, buf
, size
) == NULL
? EOF
: 0;
98 _IO_release_lock (fp
);
104 weak_alias (_IO_setvbuf
, setvbuf
)