1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

uv.h: move private uv_req_t fields to the bottom of the struct

This commit is contained in:
Andrius Bentkus 2012-10-06 01:39:46 +03:00 committed by Bert Belder
parent 40134c3537
commit b2caee7cfb

View File

@ -352,11 +352,11 @@ UV_EXTERN const char* uv_err_name(uv_err_t err);
#define UV_REQ_FIELDS \
/* public */ \
void* data; \
/* read-only */ \
uv_req_type type; \
/* private */ \
ngx_queue_t active_queue; \
UV_REQ_PRIVATE_FIELDS \
/* read-only */ \
uv_req_type type; \
/* Abstract base class of all requests. */
struct uv_req_s {