Commit 7249b2bd authored by Sergey Lyubka's avatar Sergey Lyubka Committed by Cesanta Bot

Update mg_mgr docstring

PUBLISHED_FROM=da57dfe52e315dc1901d761289f0445be6e93cea
parent 238bf1a2
...@@ -7,7 +7,7 @@ signature: | ...@@ -7,7 +7,7 @@ signature: |
struct mg_connection *active_connections; struct mg_connection *active_connections;
const char *hexdump_file; /* Debug hexdump file path */ const char *hexdump_file; /* Debug hexdump file path */
#ifndef MG_DISABLE_SOCKETPAIR #ifndef MG_DISABLE_SOCKETPAIR
sock_t ctl[2]; /* Socketpair for mg_wakeup() */ sock_t ctl[2]; /* Socketpair for mg_broadcast() */
#endif #endif
void *user_data; /* User data */ void *user_data; /* User data */
void *mgr_data; /* Implementation-specific event manager's data. */ void *mgr_data; /* Implementation-specific event manager's data. */
......
...@@ -1199,7 +1199,7 @@ struct mg_mgr { ...@@ -1199,7 +1199,7 @@ struct mg_mgr {
struct mg_connection *active_connections; struct mg_connection *active_connections;
const char *hexdump_file; /* Debug hexdump file path */ const char *hexdump_file; /* Debug hexdump file path */
#ifndef MG_DISABLE_SOCKETPAIR #ifndef MG_DISABLE_SOCKETPAIR
sock_t ctl[2]; /* Socketpair for mg_wakeup() */ sock_t ctl[2]; /* Socketpair for mg_broadcast() */
#endif #endif
void *user_data; /* User data */ void *user_data; /* User data */
void *mgr_data; /* Implementation-specific event manager's data. */ void *mgr_data; /* Implementation-specific event manager's data. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment