mirror of
https://github.com/cuberite/libevent.git
synced 2025-09-10 04:50:37 -04:00
reindent macros in util-internal.h
svn:r1159
This commit is contained in:
parent
d475fb5861
commit
bbd6a332e1
@ -58,15 +58,15 @@ extern "C" {
|
|||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define EVUTIL_ERR_RW_RETRIABLE(e) \
|
#define EVUTIL_ERR_RW_RETRIABLE(e) \
|
||||||
((e) == WSAEWOULDBLOCK || \
|
|
||||||
(e) == WSAEINTR)
|
|
||||||
|
|
||||||
#define EVUTIL_ERR_CONNECT_RETRIABLE(e) \
|
|
||||||
((e) == WSAEWOULDBLOCK || \
|
((e) == WSAEWOULDBLOCK || \
|
||||||
(e) == WSAEINTR || \
|
(e) == WSAEINTR)
|
||||||
(e) == WSAEINPROGRESS || \
|
|
||||||
(e) == WSAEINVAL)
|
#define EVUTIL_ERR_CONNECT_RETRIABLE(e) \
|
||||||
|
((e) == WSAEWOULDBLOCK || \
|
||||||
|
(e) == WSAEINTR || \
|
||||||
|
(e) == WSAEINPROGRESS || \
|
||||||
|
(e) == WSAEINVAL)
|
||||||
|
|
||||||
#define EVUTIL_ERR_ACCEPT_RETRIABLE(e) \
|
#define EVUTIL_ERR_ACCEPT_RETRIABLE(e) \
|
||||||
EVUTIL_ERR_RW_RETRIABLE(e)
|
EVUTIL_ERR_RW_RETRIABLE(e)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user