2 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
4 .\" SPDX-License-Identifier: Linux-man-pages-copyleft
6 .TH unlocked_stdio 3 (date) "Linux man-pages (unreleased)"
8 getc_unlocked, getchar_unlocked, putc_unlocked,
9 putchar_unlocked \- nonlocking stdio functions
12 .RI ( libc ", " \-lc )
17 .BI "int getc_unlocked(FILE *" stream );
18 .B "int getchar_unlocked(void);"
19 .BI "int putc_unlocked(int " c ", FILE *" stream );
20 .BI "int putchar_unlocked(int " c );
22 .BI "void clearerr_unlocked(FILE *" stream );
23 .BI "int feof_unlocked(FILE *" stream );
24 .BI "int ferror_unlocked(FILE *" stream );
25 .BI "int fileno_unlocked(FILE *" stream );
26 .BI "int fflush_unlocked(FILE *" stream );
28 .BI "int fgetc_unlocked(FILE *" stream );
29 .BI "int fputc_unlocked(int " c ", FILE *" stream );
31 .BI "size_t fread_unlocked(void " ptr "[restrict ." size " * ." n ],
32 .BI " size_t " size ", size_t " n ,
33 .BI " FILE *restrict " stream );
34 .BI "size_t fwrite_unlocked(const void " ptr "[restrict ." size " * ." n ],
35 .BI " size_t " size ", size_t " n ,
36 .BI " FILE *restrict " stream );
38 .BI "char *fgets_unlocked(char " s "[restrict ." n "], int " n \
39 ", FILE *restrict " stream );
40 .BI "int fputs_unlocked(const char *restrict " s ", FILE *restrict " stream );
44 .BI "wint_t getwc_unlocked(FILE *" stream );
45 .B "wint_t getwchar_unlocked(void);"
46 .BI "wint_t fgetwc_unlocked(FILE *" stream );
48 .BI "wint_t fputwc_unlocked(wchar_t " wc ", FILE *" stream );
49 .BI "wint_t putwc_unlocked(wchar_t " wc ", FILE *" stream );
50 .BI "wint_t putwchar_unlocked(wchar_t " wc );
52 .BI "wchar_t *fgetws_unlocked(wchar_t " ws "[restrict ." n "], int " n ,
53 .BI " FILE *restrict " stream );
54 .BI "int fputws_unlocked(const wchar_t *restrict " ws ,
55 .BI " FILE *restrict " stream );
59 Feature Test Macro Requirements for glibc (see
60 .BR feature_test_macros (7)):
66 .BR getchar_unlocked (),
68 .BR putchar_unlocked ():
70 /* glibc >= 2.24: */ _POSIX_C_SOURCE >= 199309L
71 || /* glibc <= 2.23: */ _POSIX_C_SOURCE
72 || /* glibc <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
75 .BR clearerr_unlocked (),
77 .BR ferror_unlocked (),
78 .BR fileno_unlocked (),
79 .BR fflush_unlocked (),
80 .BR fgetc_unlocked (),
81 .BR fputc_unlocked (),
82 .BR fread_unlocked (),
83 .BR fwrite_unlocked ():
85 /* glibc >= 2.19: */ _DEFAULT_SOURCE
86 || /* glibc <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
89 .BR fgets_unlocked (),
90 .BR fputs_unlocked (),
91 .BR getwc_unlocked (),
92 .BR getwchar_unlocked (),
93 .BR fgetwc_unlocked (),
94 .BR fputwc_unlocked (),
95 .BR putwchar_unlocked (),
96 .BR fgetws_unlocked (),
97 .BR fputws_unlocked ():
104 Each of these functions has the same behavior as its counterpart
105 without the "_unlocked" suffix, except that they do not use locking
106 (they do not set locks themselves, and do not test for the presence
107 of locks set by others) and hence are thread-unsafe.
111 For an explanation of the terms used in this section, see
119 Interface Attribute Value
121 .BR getc_unlocked (),
122 .BR putc_unlocked (),
123 .BR clearerr_unlocked (),
124 .BR fflush_unlocked (),
125 .BR fgetc_unlocked (),
126 .BR fputc_unlocked (),
127 .BR fread_unlocked (),
128 .BR fwrite_unlocked (),
129 .BR fgets_unlocked (),
130 .BR fputs_unlocked (),
131 .BR getwc_unlocked (),
132 .BR fgetwc_unlocked (),
133 .BR fputwc_unlocked (),
134 .BR putwc_unlocked (),
135 .BR fgetws_unlocked (),
136 .BR fputws_unlocked ()
141 .BR getchar_unlocked (),
142 .BR getwchar_unlocked ()
147 .BR putchar_unlocked (),
148 .BR putwchar_unlocked ()
150 MT-Unsafe race:stdout
153 .BR feof_unlocked (),
154 .BR ferror_unlocked (),
155 .BR fileno_unlocked ()
156 T} Thread safety MT-Safe
163 .BR getc_unlocked (),
164 .BR getchar_unlocked (),
165 .BR putc_unlocked (),
166 .BR putchar_unlocked ()
167 are in POSIX.1-2001 and POSIX.1-2008.
171 variants occur on a few UNIX systems, and are available in recent glibc.
172 .\" E.g., in HP-UX 10.0. In HP-UX 10.30 they are called obsolescent, and
173 .\" moved to a compatibility library.
174 .\" Available in HP-UX 10.0: clearerr_unlocked, fclose_unlocked,
175 .\" feof_unlocked, ferror_unlocked, fflush_unlocked, fgets_unlocked,
176 .\" fgetwc_unlocked, fgetws_unlocked, fileno_unlocked, fputs_unlocked,
177 .\" fputwc_unlocked, fputws_unlocked, fread_unlocked, fseek_unlocked,
178 .\" ftell_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
179 .\" getw_unlocked, getwc_unlocked, getwchar_unlocked, putc_unlocked,
180 .\" putchar_unlocked, puts_unlocked, putws_unlocked, putw_unlocked,
181 .\" putwc_unlocked, putwchar_unlocked, rewind_unlocked, setvbuf_unlocked,
182 .\" ungetc_unlocked, ungetwc_unlocked.
183 They should probably not be used.