Avoid dup3 PLT usage.
[platform/upstream/glibc.git] / libio / iosetvbuf.c
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.
4
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.
9
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.
14
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/>.
18
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.  */
27
28 #include "libioP.h"
29
30 #define _IOFBF 0 /* Fully buffered. */
31 #define _IOLBF 1 /* Line buffered. */
32 #define _IONBF 2 /* No buffering. */
33
34 int
35 _IO_setvbuf (fp, buf, mode, size)
36      _IO_FILE *fp;
37      char *buf;
38      int mode;
39      _IO_size_t size;
40 {
41   int result;
42   CHECK_FILE (fp, EOF);
43   _IO_acquire_lock (fp);
44   switch (mode)
45     {
46     case _IOFBF:
47       fp->_IO_file_flags &= ~(_IO_LINE_BUF|_IO_UNBUFFERED);
48       if (buf == NULL)
49         {
50           if (fp->_IO_buf_base == NULL)
51             {
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
61                  buffering.
62
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)
66                 {
67                   result = EOF;
68                   goto unlock_return;
69                 }
70               fp->_IO_file_flags &= ~_IO_LINE_BUF;
71             }
72           result = 0;
73           goto unlock_return;
74         }
75       break;
76     case _IOLBF:
77       fp->_IO_file_flags &= ~_IO_UNBUFFERED;
78       fp->_IO_file_flags |= _IO_LINE_BUF;
79       if (buf == NULL)
80         {
81           result = 0;
82           goto unlock_return;
83         }
84       break;
85     case _IONBF:
86       fp->_IO_file_flags &= ~_IO_LINE_BUF;
87       fp->_IO_file_flags |= _IO_UNBUFFERED;
88       buf = NULL;
89       size = 0;
90       break;
91     default:
92       result = EOF;
93       goto unlock_return;
94     }
95   result = _IO_SETBUF (fp, buf, size) == NULL ? EOF : 0;
96
97 unlock_return:
98   _IO_release_lock (fp);
99   return result;
100 }
101 INTDEF(_IO_setvbuf)
102
103 #ifdef weak_alias
104 weak_alias (_IO_setvbuf, setvbuf)
105 #endif