1 /* Prefer faster, non-thread-safe stdio functions if available.
3 Copyright (C) 2001-2004, 2009-2017 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program 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 program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by Jim Meyering. */
21 # define UNLOCKED_IO_H 1
23 /* These are wrappers for functions/macros from the GNU C library, and
24 from other C libraries supporting POSIX's optional thread-safe functions.
26 The standard I/O functions are thread-safe. These *_unlocked ones are
27 more efficient but not thread-safe. That they're not thread-safe is
28 fine since all of the applications in this package are single threaded.
30 Also, some code that is shared with the GNU C library may invoke
31 the *_unlocked functions directly. On hosts that lack those
32 functions, invoke the non-thread-safe versions instead. */
36 # if HAVE_DECL_CLEARERR_UNLOCKED
38 # define clearerr(x) clearerr_unlocked (x)
40 # define clearerr_unlocked(x) clearerr (x)
43 # if HAVE_DECL_FEOF_UNLOCKED
45 # define feof(x) feof_unlocked (x)
47 # define feof_unlocked(x) feof (x)
50 # if HAVE_DECL_FERROR_UNLOCKED
52 # define ferror(x) ferror_unlocked (x)
54 # define ferror_unlocked(x) ferror (x)
57 # if HAVE_DECL_FFLUSH_UNLOCKED
59 # define fflush(x) fflush_unlocked (x)
61 # define fflush_unlocked(x) fflush (x)
64 # if HAVE_DECL_FGETS_UNLOCKED
66 # define fgets(x,y,z) fgets_unlocked (x,y,z)
68 # define fgets_unlocked(x,y,z) fgets (x,y,z)
71 # if HAVE_DECL_FPUTC_UNLOCKED
73 # define fputc(x,y) fputc_unlocked (x,y)
75 # define fputc_unlocked(x,y) fputc (x,y)
78 # if HAVE_DECL_FPUTS_UNLOCKED
80 # define fputs(x,y) fputs_unlocked (x,y)
82 # define fputs_unlocked(x,y) fputs (x,y)
85 # if HAVE_DECL_FREAD_UNLOCKED
87 # define fread(w,x,y,z) fread_unlocked (w,x,y,z)
89 # define fread_unlocked(w,x,y,z) fread (w,x,y,z)
92 # if HAVE_DECL_FWRITE_UNLOCKED
94 # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z)
96 # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z)
99 # if HAVE_DECL_GETC_UNLOCKED
101 # define getc(x) getc_unlocked (x)
103 # define getc_unlocked(x) getc (x)
106 # if HAVE_DECL_GETCHAR_UNLOCKED
108 # define getchar() getchar_unlocked ()
110 # define getchar_unlocked() getchar ()
113 # if HAVE_DECL_PUTC_UNLOCKED
115 # define putc(x,y) putc_unlocked (x,y)
117 # define putc_unlocked(x,y) putc (x,y)
120 # if HAVE_DECL_PUTCHAR_UNLOCKED
122 # define putchar(x) putchar_unlocked (x)
124 # define putchar_unlocked(x) putchar (x)
128 # define flockfile(x) ((void) 0)
131 # define ftrylockfile(x) 0
134 # define funlockfile(x) ((void) 0)
136 #endif /* UNLOCKED_IO_H */