aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_itc.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-10-11 15:21:07 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-10-11 15:21:07 +0000
commitec820265a0b7f40fda6be51fbd7b8b0264aab4e9 (patch)
tree9f54c8c77763342fb74acc50d86c2e468ef12cde /src/microhttpd/mhd_itc.h
parentfbf5dfc5f4631519b9ea88a033e85418d0fe5e45 (diff)
downloadlibmicrohttpd-ec820265a0b7f40fda6be51fbd7b8b0264aab4e9.tar.gz
libmicrohttpd-ec820265a0b7f40fda6be51fbd7b8b0264aab4e9.zip
Renamed 'MHD_pipe_last_strerror_' -> 'MHD_itc_last_strerror_'
Diffstat (limited to 'src/microhttpd/mhd_itc.h')
-rw-r--r--src/microhttpd/mhd_itc.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/microhttpd/mhd_itc.h b/src/microhttpd/mhd_itc.h
index 7b2a5cc7..9f77dcc4 100644
--- a/src/microhttpd/mhd_itc.h
+++ b/src/microhttpd/mhd_itc.h
@@ -61,10 +61,10 @@ typedef int MHD_itc_;
61 */ 61 */
62#define MHD_itc_init_(itc) (-1 != ((itc) = eventfd (0, EFD_CLOEXEC | EFD_NONBLOCK))) 62#define MHD_itc_init_(itc) (-1 != ((itc) = eventfd (0, EFD_CLOEXEC | EFD_NONBLOCK)))
63 63
64/*** 64/**
65 * Get description string of last errno for pipe operations. 65 * Get description string of last errno for itc operations.
66 */ 66 */
67#define MHD_pipe_last_strerror_() strerror(errno) 67#define MHD_itc_last_strerror_() strerror(errno)
68 68
69/** 69/**
70 * write data to real pipe 70 * write data to real pipe
@@ -142,10 +142,10 @@ typedef struct MHD_Itc MHD_itc_;
142 */ 142 */
143#define MHD_itc_init_(itc) (!pipe((itc).fd)) 143#define MHD_itc_init_(itc) (!pipe((itc).fd))
144 144
145/*** 145/**
146 * Get description string of last errno for pipe operations. 146 * Get description string of last errno for itc operations.
147 */ 147 */
148#define MHD_pipe_last_strerror_() strerror(errno) 148#define MHD_itc_last_strerror_() strerror(errno)
149 149
150/** 150/**
151 * write data to real pipe 151 * write data to real pipe
@@ -222,9 +222,9 @@ typedef struct MHD_Itc MHD_itc_;
222#define MHD_itc_init_(itc) MHD_socket_pair_((itc).sk) 222#define MHD_itc_init_(itc) MHD_socket_pair_((itc).sk)
223 223
224/** 224/**
225 * Get description string of last pipe error 225 * Get description string of last error for itc operations.
226 */ 226 */
227#define MHD_pipe_last_strerror_() MHD_socket_last_strerr_() 227#define MHD_itc_last_strerror_() MHD_socket_last_strerr_()
228 228
229/** 229/**
230 * Write data to emulated pipe 230 * Write data to emulated pipe