* rpm/template (%build): Use @prefix@ instead of always /usr.
[glibc.git] / libio / iosetvbuf.c
blob6d4bcff2bc15df200eea90a3917b47894dc47a6d
1 /*
2 Copyright (C) 1993 Free Software Foundation
4 This file is part of the GNU IO Library. This library is free
5 software; you can redistribute it and/or modify it under the
6 terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 This 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this library; see the file COPYING. If not, write to the Free
17 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does not cause
21 the resulting executable to be covered by the GNU General Public License.
22 This exception does not however invalidate any other reasons why
23 the executable file might be covered by the GNU General Public License. */
25 #include "libioP.h"
27 #define _IOFBF 0 /* Fully buffered. */
28 #define _IOLBF 1 /* Line buffered. */
29 #define _IONBF 2 /* No buffering. */
31 int
32 _IO_setvbuf (fp, buf, mode, size)
33 _IO_FILE* fp;
34 char* buf;
35 int mode;
36 _IO_size_t size;
38 int result;
39 CHECK_FILE (fp, EOF);
40 _IO_flockfile (fp);
41 switch (mode)
43 case _IOFBF:
44 fp->_IO_file_flags &= ~_IO_LINE_BUF;
45 if (buf == NULL)
47 if (fp->_IO_buf_base == NULL)
49 /* There is no flag to distinguish between "fully buffered
50 mode has been explicitly set" as opposed to "line
51 buffering has not been explicitly set". In both
52 cases, _IO_LINE_BUF is off. If this is a tty, and
53 _IO_filedoalloc later gets called, it cannot know if
54 it should set the _IO_LINE_BUF flag (because that is
55 the default), or not (because we have explicitly asked
56 for fully buffered mode). So we make sure a buffer
57 gets allocated now, and explicitly turn off line
58 buffering.
60 A possibly cleaner alternative would be to add an
61 extra flag, but then flags are a finite resource. */
62 if (_IO_DOALLOCATE (fp) < 0)
64 result = EOF;
65 goto unlock_return;
67 fp->_IO_file_flags &= ~_IO_LINE_BUF;
69 result = 0;
70 goto unlock_return;
72 break;
73 case _IOLBF:
74 fp->_IO_file_flags |= _IO_LINE_BUF;
75 if (buf == NULL)
77 result = 0;
78 goto unlock_return;
80 break;
81 case _IONBF:
82 buf = NULL;
83 size = 0;
84 break;
85 default:
86 result = EOF;
87 goto unlock_return;
89 result = _IO_SETBUF (fp, buf, size) == NULL ? EOF : 0;
90 unlock_return:
91 _IO_funlockfile (fp);
92 return result;
95 weak_alias (_IO_setvbuf, setvbuf)