Mercurial > hg > octave-jordi > gnulib-hg
annotate lib/fdopen.c @ 18070:d460ec17f09f
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Tue, 28 Jul 2015 13:57:32 -0700 |
parents | ab58d4870664 |
children |
rev | line source |
---|---|
15734 | 1 /* Open a stream with a given file descriptor. |
17848 | 2 Copyright (C) 2011-2015 Free Software Foundation, Inc. |
15734 | 3 |
4 This program is free software: you can redistribute it and/or modify | |
5 it under the terms of the GNU General Public License as published by | |
6 the Free Software Foundation; either version 3 of the License, or | |
7 (at your option) any later version. | |
8 | |
9 This program is distributed in the hope that it will be useful, | |
10 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 GNU General Public License for more details. | |
13 | |
14 You should have received a copy of the GNU General Public License | |
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
16 | |
17 #include <config.h> | |
18 | |
19 /* Specification. */ | |
20 #include <stdio.h> | |
21 | |
22 #include <errno.h> | |
23 | |
15776
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
24 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
25 # include "msvc-inval.h" |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
26 #endif |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
27 |
15734 | 28 #undef fdopen |
29 | |
15776
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
30 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
31 static FILE * |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
32 fdopen_nothrow (int fd, const char *mode) |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
33 { |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
34 FILE *result; |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
35 |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
36 TRY_MSVC_INVAL |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
37 { |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
38 result = fdopen (fd, mode); |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
39 } |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
40 CATCH_MSVC_INVAL |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
41 { |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
42 result = NULL; |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
43 } |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
44 DONE_MSVC_INVAL; |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
45 |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
46 return result; |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
47 } |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
48 #else |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
49 # define fdopen_nothrow fdopen |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
50 #endif |
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
51 |
15734 | 52 FILE * |
53 rpl_fdopen (int fd, const char *mode) | |
54 { | |
55 int saved_errno = errno; | |
56 FILE *fp; | |
57 | |
58 errno = 0; | |
15776
1544d00cbf34
fdopen: Support for MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
15734
diff
changeset
|
59 fp = fdopen_nothrow (fd, mode); |
15734 | 60 if (fp == NULL) |
61 { | |
62 if (errno == 0) | |
63 errno = EBADF; | |
64 } | |
65 else | |
66 errno = saved_errno; | |
67 | |
68 return fp; | |
69 } |